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


Please Help Members By Posting Answers For Below Questions

how do you programme Carrier Sense Multiple Access

1505


How does struct work in c?

599


Give the rules for variable declaration?

661


Why is this loop always executing once?

607


Can a pointer be volatile in c?

524






Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

652


What is a structure in c language. how to initialise a structure in c?

595


Do you know the use of fflush() function?

588


Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above

650


What is volatile keyword in c?

571


What is bubble sort in c?

625


What are the different types of control structures in programming?

650


What does char * * argv mean in c?

613


When should the const modifier be used?

645


please explain every phase in the "SDLC" in the dotnet.

2166