Point out the error in the following program on GCC compiler.

Loading

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;
}

A. Error: in printf
B. error: ‘emp’ undeclared (first use in this function)
C. No error.
D. None of these.