What is the explanation for the dangling pointer in c?
What is Your Name :)
What is #include in c?
Explain what are linked list?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is the use of pointers in C?
0 Answers Impetus, Motorola, Tavant Technologies, Virtusa,
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;
Explain what is operator promotion?
How can I open a file so that other programs can update it at the same time?
Can two or more operators such as and be combined in a single line of program code?
WHAT IS INT?