What is the output of this program?

#includestdio.h
struct sample
{
int a=0;
char b='A';
float c=10.5;
};
int main()
{
struct sample s;
printf("%d, %c, %f", s.a, s.b,s.c);
return 0;
}

Posted on by