#include <stdio.h> union Sti { int nu; char m; }; int main() { union Sti s; printf("%d", sizeof(s)); return 0; }
a) 8
b) 5
c) 9
d) 4
What will be the output of the following C code on a 64 bit machine?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
What will be the output of the following C code on a 64 bit machine?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!