Home » C Programming » Structures, Unions, Enums

What will be the output of the program in 16 bit platform (Turbo C under DOS)? #include<stdio.h> int main() { struct value { int bit1:1; int bit3:4; int bit4:4; }bit; printf("%d\n", sizeof(bit)); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!