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 / mannucse
d
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What is LINKED LIST? How can you access the last element in a linked list?
What is typedf?
What are the different types of pointers used in c language?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is volatile, register definition in C
How do you sort filenames in a directory?
What are the types of type qualifiers in c?
What is malloc and calloc?
Explain how can you determine the size of an allocated portion of memory?
Are bit fields portable?
What are multibyte characters?
What are different types of variables in c?
State the difference between x3 and x[3].
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
What is the total generic pointer type?