explain what is an endless loop?
No Answer is Posted For this Question
Be the First to Post Answer
what is an inline fuction??
how should functions be apportioned among source files?
what is the difference between getch() and getche()?
Can a binary search tree be used as an index? If yes, how? Explain
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
what is the program to display your name in any color?
how to make program without <> in libray.
Why ordinary variable store only one value
Explain what is dynamic data structure?
When the macros gets expanded?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
what are bitwise shift operators?