Showing posts with label union. Show all posts
38

38

union shark { int a; char *b; double d; long l; }s; int main() { printf("%d %d",sizoef(s),sizeof(s.b)); return 0; } Output 8 2
Read More