//fibriconance sequence
#include<stdio.h>
#include<conio.h>
int n;
void recfibo();
void main()
{
printf("enter the value of n:=> ");
scanf("%d",&n);
recfibo();
getch();
clrscr();
}
void recfibo()
{
static int i=1,s1=1,s2=0;;
printf("%d ",s1);
s1=s1+s2;
s2=s1-s2;
i++;
if (i<=n)
{
recfibo();
}
}
You do nothing! A sequence of numbers will contain no X and so nothing needs doing!
A sequence is just an ordered set of events. You write it by telling what happened in order.
write something, leave a space, write something else.
write something, leave a space, write something else.
An ALGORITHM is a sequence of steps that depicts the program logic independent of the language in which it is to be implemented. An algorithm should be designed with space and time complexities in mind.
Sure: int main (void) { puts ("Hello, world!"); return 0; }
8086 assembly language program to check wether given number is perfect or not
How to write a program for secant method by mathematica
Yes, this is possible.
write a vb program to find the magic square
write a program to multily 3*3 matrix.
write a lex program to delete space from the program