Write a program of advanced Fibonacci series.


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

Post New Answer

More C Interview Questions

How do I get an accurate error status return from system on ms-dos?

0 Answers  


what is the benefit of c30

2 Answers  


What is difference between scanf and gets?

0 Answers  


What is the scope of static variables in c language?

0 Answers  


Can a variable be both static and volatile in c?

0 Answers  






To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.

4 Answers   Aricent,


change to postfix a/(b+c*d-e)

8 Answers   Value Labs,


In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }

1 Answers  


What is sizeof array in c?

0 Answers  


How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?

0 Answers   Infosys,


Write a C function to search a number in the given list of numbers. donot use printf and scanf

6 Answers   Honeywell, TCS,


Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }

2 Answers   ADITI,


Categories