program in c to print 1 to 100 without using loop
Answer Posted / madhavi
main()
{
int i=1;
LOOP:
printf("%d\t",i);
i++;
if(i<=100)
goto LOOP;
}
Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is pragma in c?
I need previous papers of CSC.......plz help out by posting them.......
How do I get a null pointer in my programs?
What is structure in c definition?
Write a program to check palindrome number in c programming?
What are the disadvantages of external storage class?
What does stand for?
Does c have an equivalent to pascals with statement?
What is chain pointer in c?
Why c is called top down?
Can you subtract pointers from each other? Why would you?
What is sizeof int?
Explain how are 16- and 32-bit numbers stored?
What are valid signatures for the Main function?
What is the sizeof () operator?