write a program to generate 1st n fibonacci prime number
Answer Posted / amit thakur
void main()
{
int x=1,i=0,n;
printf("Enter the value for n ");
scanf("%d",&n);
printf("\n%d ,",i);
for(;n>=1;--n)
{
x=x+i;
i=x-i;
printf("%d ,",x);
}
getch();
}
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Which header file should you include if you are to develop a function which can accept variable number of arguments?
how should functions be apportioned among source files?
Apart from dennis ritchie who the other person who contributed in design of c language.
what are the facialities provided by you after the selection of the student.
Explain how can I write functions that take a variable number of arguments?
What is New modifiers?
write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.
What are called c variables?
What was noalias and what ever happened to it?
How can you tell whether a program was compiled using c versus c++?
Are the outer parentheses in return statements really optional?
Explain how can I convert a string to a number?
What is the main difference between calloc () and malloc ()?
What would be an example of a structure analogous to structure c?
please send me the code for multiplying sparse matrix using c