c
1#include <stdio.h> 2//#include <string.h> 3 4 5typedef struct { 6 char name[100]; 7 int score; 8} student_data_t; 9 10student_data_t student1 = {"Todai Hanako", 80}; 11 12student_data_t student2; 13 14student2 = student1; 15 16 17void student_data_ouput (student_data_t *data) { 18 printf("Score of %s : %d\n", data->name, data->score); 19} 20 21 22 23int main (void) { 24 25 26 student_data_ouput( &student1); 27 28 return 0; 29}
student2の型がなぜかintになってエラーが出るのですが、解決方法が知りたいです
###生じたエラー
$ gcc -o s3 s3.c
s3.c:13:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
student2 = student1;
^
s3.c:13:1: error: redefinition of 'student2' with a different type: 'int' vs
'student_data_t' (aka 'struct student_data')
s3.c:11:16: note: previous definition is here
student_data_t student2;
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。