How do I read the arrow keys? What about function keys?
No Answer is Posted For this Question
Be the First to Post Answer
code for bubble sort?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Is stack a keyword in c?
What is data type long in c?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What is #line in c?
What is s or c?
Which weighs more, a gram of feathers or a gram of gold?
How can I read data from data files with particular formats?
Given an unsigned integer, find if the number is power of 2?
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