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 / phanitha
d is the right answer
# should not be present at starting.
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
What are runtime error?
Why is c called a mid-level programming language?
What is calloc malloc realloc in c?
Differentiate between null and void pointers.
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Explain how to reverse singly link list.
What is typedef?
What 'lex' does?
What are the advantages of c language?
Explain how do you sort filenames in a directory?
What does c mean in basketball?
a c code by using memory allocation for add ,multiply of sprase matrixes
Why we use break in c?
What is data types?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.