which of the following statements is incorrect
a.typedef struct new{
int n1;
char n2;
} DATA;
b.typedef struct {
int n3;
char *n4;
}ICE;
c.typedef union {
int n5;
float n6;
} UDT;
d.#typedef union {
int n7;
float n8;
} TUDAT;
Answer Posted / mannucse
d
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
Why string is used in c?
Give basis knowledge of web designing ...
What is action and transformation in spark?
Why c is faster than c++?
What is indirection in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What does p mean in physics?
How do I send escape sequences to control a terminal or other device?
What is pragma in c?
Why main is not a keyword in c?
What are the rules for the identifier?
How can I trap or ignore keyboard interrupts like control-c?
Write a program to print factorial of given number using recursion?
Is there anything like an ifdef for typedefs?
Explain the use of fflush() function?