Write a C program in Fibonacci series.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }

4 Answers   HCL,


is it possible to create your own header files?

0 Answers  


What is the purpose of macro in C language?

0 Answers   Fidelity,


What is #ifdef ? What is its application?

0 Answers   TCS,


what is bitwise operator?

1 Answers   IBM,






what is the difference between getch() and getche()?

7 Answers   Infosys,


What is a far pointer in c?

0 Answers  


difference between loading and linking

1 Answers  


What is function in c with example?

0 Answers  


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); }

2 Answers  


triangle number finding program...

1 Answers   HCL,


the format specified for hexa decimal is a.%d b.%o c.%x d.%u

7 Answers   TCS,


Categories