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 / sanath
Bot a and d are wrong.
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
What is n in c?
Is boolean a datatype in c?
Tell me with an example the self-referential structure?
Write a program to identify if a given binary tree is balanced or not.
Explain what is a program flowchart and explain how does it help in writing a program?
Explain how can you tell whether a program was compiled using c versus c++?
Why is a semicolon (;) put at the end of every program statement?
Explain low-order bytes.
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Under what circumstances does a name clash occur?
What is 2 d array in c?
What is the ANSI C Standard?
Why we write conio h in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What are the different categories of functions in c?