The Virtual Destructors

The Virtual Destructors An initiative to improve the technology and serve the people the best we can.

27/02/2017

Hey guys. We're here to serve you. You can ask any questions anytime and we're here to give you solutions. Make the best use of this opportunity. Keep the page alive.

23/11/2013

#4
PRINTING FIBONACCI SERIES USING RECURSIVE FUNCTION IN C.


void fibonacci(int, int, int, int);
main()
{
long int n, i=0, t1=0, t2=1;
printf("Enter the term upto which you want to print Fibonacci series:");
scanf("%d",&n);
n=n-2;
printf("Series is:%d %d",t1,t2);
fibonacci(i, n, t1, t2);
}
void fibonacci(int i, int n, int t1, int t2)
{
int sum;
if(i

 #3thanks buddies for all ur support (y)  # The Virtual Destructors
22/11/2013

#3
thanks buddies for all ur support (y)
# The Virtual Destructors

 #2Guys try this, but mark that it works with the side keys only (i.e. num lock keys) # The Virtual Destructors
20/11/2013

#2
Guys try this, but mark that it works with the side keys only (i.e. num lock keys)


# The Virtual Destructors

15/11/2013

for all d related queries n doubts about c programming, post us or inbox us.. (happy to help).. :)
# The Virtual Destructors

15/11/2013

#1
C program to find factorial of any number using recursion.



int main()
{
int fac,n;
int factorial(int);

printf("Enter any number:");
scanf("%d",&n);

fac=factorial(n);
printf("Factorial=%d",fac);

return 0;
}

int factorial(int x)
{
int f;
if(x==1)
return 1;
else
f=x*factorial(x-1);

return f;
}
# The Virtual Destructors

15/11/2013

First of all Thanks to all D Guys who like our page
we r nothing without u all
(y)
so now on The destruction & debugging begins
We are in an urgent need of people who can give relevant suggestions so all suggestions are welcomed :)
# The Virtual Destructors

Address

Dharwad
580001

Website

Alerts

Be the first to know and let us send you an email when The Virtual Destructors posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share