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


Please Help Members By Posting Answers For Below Questions

What is merge sort in c?

640


Explain the difference between null pointer and void pointer.

663


Linked lists -- can you tell me how to check whether a linked list is circular?

639


Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

2644


How do you define a function?

579






How do you use a 'Local Block'?

714


What is the difference between malloc calloc and realloc in c?

643


How do we print only part of a string in c?

579


about c language

1597


What is meant by inheritance?

627


What is the maximum length of an identifier?

661


write a programming in c to find the sum of all elements in an array through function.

1701


Can we use any name in place of argv and argc as command line arguments?

606


What is n in c?

569


What are the different properties of variable number of arguments?

659