✪ Choose the correct option.
Point out the error in the following program on GCC compiler.
#include
struct emp {
char name[20];
int age;
};
int main() {
emp int e;
int a;
printf("%d ", &a);
return 0;
}