Write a program of advanced Fibonacci series.
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of data files?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
How can you convert integers to binary or hexadecimal?
char ch="{'H','I',0};printf("%s",ch);what is output
What are the advantages of c preprocessor?
What is wild pointer in c with example?
Why is c still so popular?
Can you think of a way when a program crashed before reaching main? If yes how?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
Explain the array representation of a binary tree in C.
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
can we define a function in structure?