问题描述
- c需要char类型定义数组的问题
-
#include
#include
#define PRAISE "What a super marvelous name!"
int main(void)
{
char name[40];
printf("What's your name?n");
scanf("%s",name);
printf("Hello,%s,%sn",name,PRAISE);
printf("Your name of %d letters occupies %d memory cells.n",strlen(name),sizeof name);
printf("The phrase of praise has %d letters",strlen(PRAISE));
printf("and occupies %d memory cells.n",sizeof PRAISE);
return 0;
}哪里出问题了,远行是说char name[40]这行错误
解决方案
你好,写代码的时候用的都是英文也就是半角的标点符号,你看看[40],这个中括号换成英文的就没事了。
时间: 2024-10-20 03:12:36