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


Please Help Members By Posting Answers For Below Questions

What is a global variable in c?

592


Where does the name "C" come from, anyway?

647


Why isnt there a numbered, multi-level break statement to break out

591


What is difference between main and void main?

630


Is main is user defined function?

599






Why does the call char scanf work?

622


regarding pointers concept

1579


What is a char in c?

559


Implement bit Array in C.

678


What is structure in c language?

623


is it possible to create your own header files?

647


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

877


What is the use of #define preprocessor in c?

621


how many key words availabel in c a) 28 b) 31 c) 32

635


1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.

1666