Write a program to find factorial of a number using recursive function.
No Answer is Posted For this Question
Be the First to Post Answer
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
What is advantage of pointer in c?
what is link list?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
write a function for strtok()??
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
how do you programme Carrier Sense Multiple Access
without using arithmatic operator convert an intger variable x into x+1
what do you mean by enumeration constant?
How to write the code of the program to swap two numbers with in one statement?
how to create duplicate link list using C???
Write a simple code fragment that will check if a number is positive or negative.