fn f(x)
{ if(x<=0)
return;
else f(x-1)+x;
}
Answers were Sorted based on User's Feedback
What is putchar() function?
How many header files are in c?
write a program in c language to print your bio-data on the screen by using functions.
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
What is the correct declaration of main?
write a code for large nos multilication (upto 200 digits)
why Language C is plateform dependent
To what value do nonglobal variables default? 1) auto 2) register 3) static
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
What is the purpose of clrscr () printf () and getch ()?
What is the difference between text and binary modes?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit