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;
Post New Answer View All Answers
Tell me when is a void pointer used?
Explain what is gets() function?
How many levels of pointers have?
Why isn't it being handled properly?
Can we change the value of constant variable in c?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
What are enumerated types?
How can I open files mentioned on the command line, and parse option flags?
Explain pointers in c programming?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Can variables be declared anywhere in c?
How are 16- and 32-bit numbers stored?
What is the purpose of the preprocessor directive error?
What are the 5 types of inheritance in c ++?
what is the function of pragma directive in c?