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 |
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
Differentiate between Macro and ordinary definition.
How can I access memory located at a certain address?
Here is a good puzzle: how do you write a program which produces its own source code as output?
what is ANSI and ISO
What are the advantages of using macro in c language?
What is the purpose of type declarations?
how to print "hai" in c?
What is indirection? How many levels of pointers can you have?
Is using exit() the same as using return?
What does the function toupper() do?
hi how to convert program from notepad to turboc editor can u please help me