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


Please Help Members By Posting Answers For Below Questions

Synonymous with pointer array a) character array b) ragged array c) multiple array d) none

609


What is malloc calloc and realloc in c?

660


What is the concatenation operator?

604


Can you apply link and association interchangeably?

665


Explain the use of function toupper() with and example code?

647






What is the difference between far and near in c?

593


what do u mean by Direct access files? then can u explain about Direct Access Files?

1635


Why static variable is used in c?

548


Is c language still used?

533


What is difference between array and pointer in c?

532


Why can’t we compare structures?

803


What is the translation phases used in c language?

625


Why we use void main in c?

587


What is c system32 taskhostw exe?

580


write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

1622