fn f(x)
{ if(x<=0)
return;
else f(x-1)+x;
}
Answers were Sorted based on User's Feedback
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
What is the use of the restrict keyword?
How do you access command-line arguments?
How many loops are there in c?
What is the difference between mpi and openmp?
how do you execute a c program in unix.
print the table 5 in loops
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
write a programe returns the number of times the character appears in the string
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
How can you convert integers to binary or hexadecimal?