Find Error if any in below code, Justify ur answer:
struct xx
{
int a;
struct yy
{
char c;
struct xx* p;
}
struct yy* q;
}
Answer Posted / raj
struct xx
{
int a;
struct yy
{
char c;
struct xx* p;
};//Semicolon is missing
struct yy* q;
}
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
What is the difference between functions getch() and getche()?
why do some people write if(0 == x) instead of if(x == 0)?
how to create duplicate link list using C???
How do I create a directory? How do I remove a directory (and its contents)?
Is c language still used?
What are external variables in c?
Are global variables static in c?
Does sprintf put null character?
When should the register modifier be used? Does it really help?
Is there a built-in function in C that can be used for sorting data?
What does main () mean in c?
Suggesting that there can be 62 seconds in a minute?
What are disadvantages of C language.
Difference between Function to pointer and pointer to function
What are all different types of pointers in c?