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

if p is a string contained in a string?

1407


Why #include is used in c language?

605


what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9

1433


How many keywords are there in c?

595


Is there a way to switch on strings?

623






What are the ways to a null pointer can use in c programming language?

592


Can you assign a different address to an array tag?

704


where are auto variables stored? What are the characteristics of an auto variable?

597


How pointer is different from array?

585


What is variable and explain rules to declare variable in c?

558


what is recursion in C

618


What is preprocessor with example?

591


How to implement a packet in C

2401


What is && in c programming?

684


What does & mean in scanf?

606