What is a node in c?



What is a node in c?..

Answer / Amit Kumar Batar

"In C, a node refers to an entity that stores data, often used in creating linked lists and trees. Each node contains two components - the data and a reference (pointer) to another node, which points to the next node in the list or tree."

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

How can you invoke another program from within a C program?

1 Answers  


#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..

3 Answers  


25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?

11 Answers   CTS, TCS,


Expand the following LKB BKL FFG

0 Answers  


what is the difference between declaration ,defenetion and initialization of a variable?

7 Answers   LG Soft,


What is a symbolic constant?

1 Answers  


A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }

2 Answers   Wipro,


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

1 Answers   TCS,


C program to read the integer and calculate sum and average using single dimensional array

0 Answers  


FILE PROGRAMMING

1 Answers   Wipro,


Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10

2 Answers   CMS,


Write a program for finding factorial of a number.

1 Answers   Tech Mahindra,


Categories