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
Can main () be called recursively?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
Explain modulus operator. What are the restrictions of a modulus operator?
what is event driven software and what is procedural driven software?
How can I pad a string to a known length?
What are the types of type specifiers?
What is wild pointer in c with example?
What is the c value paradox and how is it explained?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
FILE PROGRAMMING
What is pass by reference in functions?
Explain indirection?
How do I round numbers?
Explain what is the difference between a string and an array?