Tell me with an example the self-referential structure?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not

9 Answers   Alcatel,


output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }

2 Answers   Elysium,


What is the difference between functions getch() and getche()?

0 Answers  


What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?

0 Answers  


What does struct node * mean?

0 Answers  






Can I initialize unions?

0 Answers  


what is a non volatile key word in c language?

1 Answers  


Meaning of () in c

1 Answers  


how many keywords do C compile?

7 Answers   Microsoft, Practical Viva Questions,


Why does the call char scanf work?

0 Answers  


I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.

1 Answers  


What are the different types of data structures in c?

0 Answers  


Categories