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
Why is it important to memset a variable, immediately after allocating memory to it ?
What is the difference between volatile and const volatile?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Explain the use of #pragma exit?
What are called c variables?
What is an array in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is the meaning of ?
Is struct oop?
Do character constants represent numerical values?
What is adt in c programming?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Explain how to reverse singly link list.
Is c easy to learn?
Explain how does flowchart help in writing a program?