Post New Answer View All Answers
What is advantage of pointer in c?
What is the best way of making my program efficient?
Can a variable be both static and volatile in c?
What are the header files used in c language?
In which header file is the null macro defined?
What are pointers? What are stacks and queues?
What is a scope resolution operator in c?
What is a char c?
Is c++ based on c?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is %g in c?
Explain #pragma statements.
What are 'near' and 'far' pointers?
Is there a built-in function in C that can be used for sorting data?
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