in Programming in C
337 views
2 votes
2 votes
#include<stdio.h>
struct X
{
    int a;
    int b;
    int c;
};
int main(void)
{
    printf("%zu",sizeof(struct X));
}

What is output of the program and why?

in Programming in C
by
337 views

1 comment

@srestha  this is a very nice article you must check

1
1

1 Answer

0 votes
0 votes

Related questions