栈破坏实例

#include <stdio.h>


int main()
{
char name[8];
printf("Please type your name: ");   //输入大于8个字符。
    gets_s(name);
int a = 4;
printf("Hello, %s!", name);
//scanf("%s", name);
return 0;
}


相关文章:

  • 2022-12-23
  • 2022-01-29
  • 2021-09-13
  • 2022-01-28
  • 2022-01-09
  • 2022-12-23
  • 2021-09-20
  • 2021-08-19
猜你喜欢
  • 2021-12-31
  • 2021-12-20
  • 2022-01-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案