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
Tell me about low level programming languages.
What does p mean in physics?
while initialization of array why we use a[][2] why not a[2][]...?
What is %d called in c?
What is a string?
What is a structural principle?
Where static variables are stored in memory in c?
Is boolean a datatype in c?
differentiate built-in functions and user – defined functions.
What is the right type to use for boolean values in c?
What is extern keyword in c?
What is c language & why it is used?
Compare array data type to pointer data type
Are the expressions * ptr ++ and ++ * ptr same?
What is difference between far and near pointers?