program in c to print 1 to 100 without using loop
Answer Posted / guest
using recursion
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Which of these functions is safer to use : fgets(), gets()? Why?
How can you determine the maximum value that a numeric variable can hold?
What are the different types of endless loops?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is static volatile in c?
Do you know the difference between malloc() and calloc() function?
What is the -> in c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is d'n in c?
What is the use of #include in c?
Write a progarm to find the length of string using switch case?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Explain how can you avoid including a header more than once?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is the size of enum in c?