#include<stdio.h> 
struct

Loading

Choose the correct option.

#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.

Leave a Comment