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 is #include cctype?
What is the explanation for prototype function in c?
Explain the use of 'auto' keyword
How do I create a directory? How do I remove a directory (and its contents)?
What is binary tree in c?
How can I find out how much free space is available on disk?
What are the 5 elements of structure?
Explain how can I make sure that my program is the only one accessing a file?
Using which language Test cases are added in .ptu file of RTRT unit testing???
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What is a far pointer in c?
When should structures be passed by values or by references?
Is main a keyword in c?
What is a header file?
What is the difference between the local variable and global variable in c?