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
When should the volatile modifier be used?
What is a far pointer in c?
What is const and volatile in c?
What the different types of arrays in c?
What is string function c?
What is the difference between malloc() and calloc() function in c language?
can anyone please tell about the nested interrupts?
What is the easiest sorting method to use?
What is union in c?
When c language was developed?
Explain b+ tree?
what is reason of your company position's in india no. 1.
Which is better oop or procedural?
What is #include stdio h and #include conio h?
What is the correct code to have following output in c using nested for loop?