Write a C program to print 1 2 3 ... 100 without using
loops?
Answer Posted / vijaya raghavan
#include<stdio.h>
int i=100;
main()
{
if (i==0) return 0;
printf("%d\t",i);
i--;
main();
}
| Is This Answer Correct ? | 4 Yes | 11 No |
Post New Answer View All Answers
which type of aspect you want from the student.
In c programming language, how many parameters can be passed to a function ?
What is echo in c programming?
Explain #pragma statements.
What is dynamic variable in c?
What are the two types of structure?
Write a program to find the biggest number of three numbers in c?
Why c is called top down?
write a c program in such a way that if we enter the today date the output should be next day's date.
What is typedef struct in c?
When was c language developed?
Can a pointer be null?
What are identifiers and keywords in c?
What are the different types of errors?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555