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 |
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
Can a file other than a .h file be included with #include?
compare array with pointer?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
i have a written test for microland please give me test pattern
What are the advantages of the functions?
how to find sum of digits in C?
Define circular linked list.
what is difference between procedural language and functional language ?
what is uses of .net
what is the hardware model of CFG( context free grammar)