What are header files why are they important?
No Answer is Posted For this Question
Be the First to Post Answer
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
program to print circle structure
What is the heap?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Write a program to check whether a number is prime or not using c?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
How do I copy files?
List the difference between a "copy constructor" and a "assignment operator"?
Write a C program to perform some of the operation which can be performed using Single linked list
list the no of files created when c source file is compiled
How would you write qsort?