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 is action and transformation in spark?
Can we use visual studio for c?
What is null pointer constant?
How to establish connection with oracle database software from c language?
What are different types of variables in c?
plz let me know how to become a telecom protocol tester. thank you.
What are dangling pointers? How are dangling pointers different from memory leaks?
is it possible to create your own header files?
What is hash table in c?
a c code by using memory allocation for add ,multiply of sprase matrixes
What is typedef example?
What is a union?
How arrays can be passed to a user defined function
Does * p ++ increment p or what it points to?
Why do we use stdio h and conio h?