Is the following code legal?
struct a
{
int x;
struct a b;
}
Answers were Sorted based on User's Feedback
Answer / raghu
no this code is illegal.
legal one:
struct a
{
int x;
struct a *b;
}
| Is This Answer Correct ? | 26 Yes | 7 No |
Answer / preeti
no. It is illegal ..
Struct shd be ended by a semi colon ..
struct a
{
int x;
struct a b;
};
| Is This Answer Correct ? | 8 Yes | 2 No |
What is else if ladder?
Why is c called c?
How does the assert() function work?
How can I list all of the predefined identifiers?
Compare interpreters and compilers.
What is the difference between Printf(..) and sprint(...) ?
what do u mean by Direct access files? then can u explain about Direct Access Files?
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
What is malloc and calloc?
how to build a exercise findig min number of e heap with list imlemented?