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 / saudip sen
choice d.
Reason:
The macro sign # is not applicable here.
Syntactical error!
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What is #include called?
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
Which is better malloc or calloc?
What is scope of variable in c?
How can you call a function, given its name as a string?
What is the size of a union variable?
Write programs for String Reversal & Palindrome check
What does. int *x[](); means ?
Why functions are used in c?
What is omp_num_threads?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What is the value of c?
What is the modulus operator?
What is header file in c?
State the difference between realloc and free.