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
Who invented bcpl language?
What is the use of a ‘ ’ character?
What are the basic data types associated with c?
How can I open a file so that other programs can update it at the same time?
Explain what’s a signal? Explain what do I use signals for?
write a program to generate address labels using structures?
What is c language and why we use it?
what is a constant pointer in C
Can the curly brackets { } be used to enclose a single line of code?
Why enum is used in c?
What is the right type to use for boolean values in c? Is there a standard type?
Describe static function with its usage?
What is the heap?
In a switch statement, what will happen if a break statement is omitted?
What do you mean by Recursion Function?