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 code for 3 questions and answer check in VisualBasic.Net?
Can we compile a program without main() function?
What are the types of bitwise operator?
all c language question
Why we use conio h in c?
How do we print only part of a string in c?
List out few of the applications that make use of Multilinked Structures?
What is the difference between single charater constant and string constant?
What are register variables? What are the advantage of using register variables?
Tell me what is the purpose of 'register' keyword in c language?
I have a varargs function which accepts a float parameter?
What is structure pointer in c?
What is meant by 'bit masking'?
What are the uses of a pointer?
What are the different types of errors?