当前位置: 技术问答>linux和unix
奇怪的而问题:
来源: 互联网 发布时间:2016-02-09
本文导语: #include #include int main() { char *p; char a[]={'h','e','l','l','o'}; p=a; while(*p!='') printf("%c",*p++); /*system("pause"); */ return 0; } 这段代码在win-tc下正常运行.可在linux gcc下发现 hello后面还有乱码,为什么会...
#include
#include
int main()
{
char *p;
char a[]={'h','e','l','l','o'};
p=a;
while(*p!='')
printf("%c",*p++);
/*system("pause");
*/
return 0;
}
这段代码在win-tc下正常运行.可在linux gcc下发现 hello后面还有乱码,为什么会这样?
顺便问一下,linux gcc下system("pause")不能用?
#include
int main()
{
char *p;
char a[]={'h','e','l','l','o'};
p=a;
while(*p!='')
printf("%c",*p++);
/*system("pause");
*/
return 0;
}
这段代码在win-tc下正常运行.可在linux gcc下发现 hello后面还有乱码,为什么会这样?
顺便问一下,linux gcc下system("pause")不能用?
|
因为这种初始化不会自动在后面加,可以这样
char a[] = "hello";
或者
char a[] = {'h','e','l','l','o',0};
另外system("pause")能不能用与gcc无关,与环境有关,system("pause")的意思就是执行pause脚本,如果你在命令行下敲入pause,能正确运行,就能用~~~~
char a[] = "hello";
或者
char a[] = {'h','e','l','l','o',0};
另外system("pause")能不能用与gcc无关,与环境有关,system("pause")的意思就是执行pause脚本,如果你在命令行下敲入pause,能正确运行,就能用~~~~
|
char a[]={ 'h ', 'e ', 'l ', 'l ', 'o '};
改
char a[]={ 'h ', 'e ', 'l ', 'l ', 'o ',''};
linux gcc下system("pause")不能用?
pause命令存在是可以用的,加 stdlib.h头文件
改
char a[]={ 'h ', 'e ', 'l ', 'l ', 'o ',''};
linux gcc下system("pause")不能用?
pause命令存在是可以用的,加 stdlib.h头文件