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 data structure in c programming?
Write a C program to count the number of email on text
Explain a file operation in C with an example.
What are dangling pointers in c?
What does 1f stand for?
Whats s or c mean?
what will be maximum number of comparisons when number of elements are given?
What are the applications of c language?
shorting algorithmS
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What will be the outcome of the following conditional statement if the value of variable s is 10?
Is it possible to pass an entire structure to functions?
What does static variable mean in c?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?