What is the output of this program?
#include
struct test {
int x = 0;
char y = 'A';
};
int main()
{
struct test t;
printf("%d, %c", s.x, s.y);
return 0;
}
Answer: B
No answer description available for this question