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 output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
What is a node in c?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
What does 4d mean in c?
What is the purpose of void pointer?
What is #line?
i need all types of question paper releted to "c" and other language.
Can you tell me how to check whether a linked list is circular?
can we print any string in c language without using semicolon(;)(terminator) in whole program.
When is a null pointer used?