我是 C 新手。以下代码中的字符串分配有效:
#include<stdio.h>
int main(void){
char str[] = "string";
printf("%s\n",str);
}
但在以下情况下不起作用,即使我将索引号提供给name[]
:
#include <stdio.h>
int main(void){
struct student {
char name[10];
int salary;
};
struct student a;
a.name[10] = "Markson";
a.salary = 100;
printf("the name is %s\n",a.name);
return 0;
}
为什么会这样?