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 / lucky
threr is no error in this prg
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
How can you pass an array to a function by value?
Difference between malloc() and calloc() function?
using for loop sum 2 number of any 4 digit number in c language
what is different between auto and local static? why should we use local static?
Explain what is page thrashing?
How do I convert a string to all upper or lower case?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What are comments and how do you insert it in a C program?
Write a program of prime number using recursion.
What is the difference between malloc calloc and realloc in c?
What are dangling pointers in c?
How are variables declared in c?
How can I read/write structures from/to data files?
Who is the founder of c language?