Point out the error in the following program ( on GCC compi

Loading

Choose the correct option.

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

#include  
union emp {
int empno;
int age;
};
int main() {
union emp e = {10, 25};
printf("%d %d", e.empno, e.age);
return 0;
}

A. 10 10  with Warning Message
B. 10 25
C. Error: cannot initialize more than one union member.
D. No error