1.

#include struct st { int x; struct st next; }; int main() { struct st temp; temp.x = 10; temp.next = temp; printf("%d", temp.next.x); return 0; }

A. Compiler Error
B. 10
C. Runtime Error
D. Garbage Value
Answer» B. 10


Discussion

No Comment Found