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
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Is flag a keyword in c?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Which are low level languages?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is a method in c?
What is operator precedence?
What is a structure member in c?
How can I insert or delete a line (or record) in the middle of a file?
What is the use of parallelize in spark?
What are the differences between Structures and Arrays?
Suggesting that there can be 62 seconds in a minute?
What is the use of bit field?
Why do we use c for the speed of light?
What are local static variables? How can you use them?