I tried to make a userdata where it's declared as a struct. I tried to use scanf, but everytime i tried to compile it always says "expected expression before 'userdata'.
Anyone know how to fix this? Thank you
Here's my code:
#include <stdio.h>
typedef struct { char name[30]; char age[2]; char country[10]; char date[40];
} userdata;
int main()
{
printf("Please input your name: \n");
scanf("%c", &userdata.name);
printf("Please input your age: \n");
scanf("%c", &userdata.age);
printf("Which country are you from: \n");
scanf("%c", &userdata.country); printf("Please tell me the date of your birth in number format (00 - 00 - 0000)\n");
scanf("%c", &userdata.date);
printf("Here's your userdata: \n");
printf("Name : %c\n", userdata.name);
printf("Age : %c\n", userdata.age);
printf("Country : %c\n", userdata.country);
printf("Date of birth : %c\n", userdata.date);
return 0;
}
You created a type called
userdata
so now you need to declare an instance of the type to use it:then you pass the address of the instance: