Write a C program to print 1 2 3 ... 100 without using
loops?
Answer Posted / gunabalan
void main()
{
int i=1;
e:
printf("%d\t",i);
i++;
if(i<=100)
goto e;
}
| Is This Answer Correct ? | 36 Yes | 12 No |
Post New Answer View All Answers
What does != Mean in c?
what is the diffrenet bettwen HTTP and internet protocol
Are comments included during the compilation stage and placed in the EXE file as well?
When should you use a type cast?
write a program to print data of 5 five students with structures?
Why pointers are used?
I have a varargs function which accepts a float parameter?
What is bash c?
Write a C program to count the number of email on text
What is return in c programming?
Explain Function Pointer?
What are structural members?
Why is this loop always executing once?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
How can you call a function, given its name as a string?