我正在尝试通过键盘为我的结构获取多个条目。我认为我在 scanf 内部错了,但我不确定我错在哪里。谢谢!
这是我所拥有的:
#include <stdio.h>
#include <math.h>
int main()
{
//define the structure
struct course
{
char title[20];
int num;
} ;
// end structure define
//define the variable
struct course classes;
printf("Enter a course title and course number");
scanf("%s %d", classes[3].title, &classes.num);
return 0;
}