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
List the difference between a "copy constructor" and a "assignment operator"?
Differentiate between #include<...> and #include '...'
#include
What is the difference between union and anonymous union?
The __________ attribute is used to announce variables based on definitions of columns in a table?
How can you check to see whether a symbol is defined?
Write a program to reverse a given number in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is keyword in c?
What is the acronym for ansi?
Are the outer parentheses in return statements really optional?
What is the use of extern in c?
What are header files why are they important?
What happens if a header file is included twice?
Write a program to print factorial of given number without using recursion?