Answers for "program in c to print 1 to 100 without using loop"

C
0

program in c to print 1 to 100 without using loop

#include <stdio.h>
int main()
{
    int i = 0;
begin:
    i = i + 1;
    printf("%d ", i);
 
    if (i < 100)
        goto begin;
    return 0;
}
Posted by: Guest on March-06-2022

Code answers related to "program in c to print 1 to 100 without using loop"

Code answers related to "C"

Browse Popular Code Answers by Language