Write a program of advanced Fibonacci series.
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
what is op? for(c=0;c=1000;c++) printf("%c",c);
Explain how can I remove the trailing spaces from a string?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
program to locate string with in a string with using strstr function
how to build a exercise findig min number of e heap with list imlemented?
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Write a program that can show the multiplication table.
What are header files and what are its uses in C programming?
What is the difference between malloc() and calloc()?