InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
#include<stdio.h>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» | |