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 |
How can you invoke another program from within a C program?
#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..
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
what is the difference between declaration ,defenetion and initialization of a variable?
What is a symbolic constant?
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(); }
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.
C program to read the integer and calculate sum and average using single dimensional array
FILE PROGRAMMING
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Write a program for finding factorial of a number.