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
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
how to write a c program to print list of fruits in alpabetical order?
What is the meaning of && in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
c language interview questions & answer
What is table lookup in c?
Explain b+ tree?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What do mean by network ?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
How can you avoid including a header more than once?
When should you not use a type cast?
Write a Program to accept different goods with the number, price and date of purchase and display them
What is the importance of c in your views?
What is || operator and how does it function in a program?