Write a program of advanced Fibonacci series.
No Answer is Posted For this Question
Be the First to Post Answer
What does 2n 4c mean?
How to find a missed value, if you want to store 100 values in a 99 sized array?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
how to devloped c lenguege?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors
How do you convert strings to numbers in C?
What are the rules for the identifier?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????