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

Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female

5 Answers   Infosys, Luminous,


main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }

4 Answers   CitiGroup,


What does extern mean in a function declaration?

4 Answers  


What are nested functions in c?

0 Answers  


What is a program flowchart and explain how does it help in writing a program?

0 Answers  






How can I trap or ignore keyboard interrupts like control-c?

0 Answers  


What happens if header file is included twice?

0 Answers  


How would you sort a linked list?

1 Answers  


What is graph in c?

0 Answers  


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


print out of string in this format; 1. "rajesh" 2. \n 3. %d

5 Answers   mpower,


Do character constants represent numerical values?

0 Answers  


Categories