标签:div 错误 world return print int printf class str
#include<stdio.h> int main() { void funstr(char str[12]); char str[12]={"hello world"}; char *a=str; str[0]=‘H‘; funstr(a); return 0; } void funstr(char str[12]) { int t=0; printf("%s\n",str); while(str[t]!=‘\0‘) { printf("%c",str[t]); t++; } }
老师 我上课时候 单词打错了 所以有那么一点小瑕疵 一直没对 错误提示没看懂
Hello world
Hello world请按任意键继续. . .
标签:div 错误 world return print int printf class str
原文地址:http://www.cnblogs.com/dingyubin/p/6652576.html