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
What is the condition that is applied with ?: Operator?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What are the c keywords?
How can I convert a number to a string?
How macro execution is faster than function ?
write a progrmm in c language take user interface generate table using for loop?
Can math operations be performed on a void pointer?
write a c program for swapping two strings using pointer
What does %p mean c?
What the different types of arrays in c?
What are the functions to open and close the file in c language?
What is c basic?
What is use of bit field?
What is the use of extern in c?
What does struct node * mean?