一个程序通不过,很菜
#include<stdio.h>
#include<string.h>
main()
{
char s[30]
StrCpy(s,”this is str!”);
printf(s);
getch();
}
#include<string.h>
main()
{
char s[30]
StrCpy(s,”this is str!”);
printf(s);
getch();
}
>> 本文固定链接: http://www.vcgood.com/archives/2656
1) c语言区分大小写的
2) 代码行以分号;结束
3) main函数的标准定义为
int main()和int main(int argc, char **argv)这两种
最佳答案:
#include<stdio.h>
#include<string.h>
main()
{
char s[30] 这一行后加分号
StrCpy(s,”this is str!”); 函数改成strcpy
printf(s); 因为定义的是字符型一维数组应该用puts(s)
getch();
}
正确答案:
#include<stdio.h>
#include<string.h>
main()
{
char s[30];
strcpy(s,”this is str!”);
puts(s);
getch();
}
对………就是这样子的.
嗯 现在我初学 也经常范这样的错误 希望自己慢慢长进