Home » C Programming » Structures, Unions, Enums

Point out the error in the program? #include<stdio.h> int main() { struct a { float category:5; char scheme:4; }; printf("size=%d", sizeof(struct a)); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!