Is the following code legal?
struct a
{
int x;
struct a b;
}
Answer Posted / raghu
no this code is illegal.
legal one:
struct a
{
int x;
struct a *b;
}
| Is This Answer Correct ? | 26 Yes | 7 No |
Post New Answer View All Answers
Discuss the function of conditional operator, size of operator and comma operator with examples.
Explain the concept and use of type void.
How can I find out how much free space is available on disk?
Explain how are 16- and 32-bit numbers stored?
Differentiate between null and void pointers.
How do you redirect a standard stream?
How do shell structures work?
How do we open a binary file in Read/Write mode in C?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Suggesting that there can be 62 seconds in a minute?
Is this program statement valid? INT = 10.50;
How can I manipulate strings of multibyte characters?
What is the heap?
Can you return null in c?
What is the use of pointers in C?