Which of the Following will define a type NODE that is a
node in a Linked list?
A)struct node {NODE*next;int x;};type def struct node NODE;
B)typedef struct NODE {struct NODE *next;int x;};
C)typedef struct NODE {NODE *next;int x;};
D)typedef struct {NODE *next;int x;}NODE;
Answer Posted / santhoo035
d)
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How many identifiers are there in c?
What is the use of a static variable in c?
What is the size of empty structure in c?
What is the use of getchar() function?
What is the concatenation operator?
how to make a scientific calculater ?
What is a pointer on a pointer in c programming language?
What is the translation phases used in c language?
What does do in c?
In C language what is a 'dangling pointer'?
How to write a multi-statement macro?
Explain the use of #pragma exit?
Is it acceptable to declare/define a variable in a c header?
What is difference between far and near pointers?
What is the purpose of void pointer?