What is the size of the below C structure in Turbo C ?
#includestdio.h
int main()
{
struct books{
int pages;
char str[4];
}b;
printf("%d",sizeof(b));
return 0;
}

Posted on by