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
Post New Answer View All Answers
Ow can I insert or delete a line (or record) in the middle of a file?
What is scope rule of function in c?
What are run-time errors?
Do you know what are the properties of union in c?
hi, which software companys will take,if d candidate's % is jst 55%?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is the significance of scope resolution operator?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What's the best way of making my program efficient?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What library is sizeof in c?
Explain the advantages of using macro in c language?
Write a program to check palindrome number in c programming?
What is spaghetti programming?