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
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Why array is used in c?
Explain how can you be sure that a program follows the ansi c standard?
Why is c so powerful?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
Why enum is used in c?
What is the size of empty structure in c?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What is p in text message?
explain what are pointers?
What is the use of a static variable in c?
Is Exception handling possible in c language?
Can I initialize unions?
What is s in c?