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 value of a[3] if integer a[] = {5,4,3,2,1}?
Explain what is a stream?
What is the process to create increment and decrement stamen in c?
Does sprintf put null character?
How can I convert a number to a string?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What is the purpose of scanf() and printf() functions?
In a switch statement, what will happen if a break statement is omitted?
What is property type c?
Write a program to generate the Fibinocci Series
i got 75% in all semester am i eligible for your company
formula to convert 2500mmh2o into m3/hr
What is the use of getchar functions?
Explain how do you generate random numbers in c?