Write a program of advanced Fibonacci series.
No Answer is Posted For this Question
Be the First to Post Answer
Why malloc is faster than calloc?
write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
how to impliment 2 or more stacks in a single dimensional array ?
When was c language developed?
Why can’t constant values be used to define an array’s initial size?
any string of bits of length 'n' represents a unique non- negative integer between.............?
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
write a program that will print %d in the output screen??
What is the difference between array and pointer?
Write a program to print factorial of given number using recursion?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }