Computer Science, asked by deventhiranr904, 20 days ago

Find the output of the below snippet. union abc { int a, char b: } yar: void main() { var.a = 66: printf("%d %d", var.a var.b); }​

Answers

Answered by prosunny8085
0

Answer:

compile time error

Explanation:

you do not store any value in char b ; variable or do not end with semicolon (;).

Similar questions