Write a program to print fibonacci series without using recursion?
No Answer is Posted For this Question
Be the First to Post Answer
What is s or c?
How can variables be characterized?
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
What is calloc malloc realloc in c?
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
When can you use a pointer with a function?
What is the use of bitwise operator?
How do c compilers work?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What does 3 periods mean in texting?
What are the advantages of using new operator as compared to the function malloc ()?