Find the output for the following program.

#includestdio.h
struct A
{
int a=1;
char b[]="abc";
};
int main()
{
struct A a1;
printf("%d",a1.b);
printf("%d",a1.a);
return 0;
}

Posted on by