Computer Science, asked by anjiladhital211, 6 months ago

Write a program
to display 1 to 100
horizontally​

Answers

Answered by successfornam
0
#include

int main()
{
int i = 0;
begin:
i = i + 1;
printf("%d ", i);

if (i < 100)
goto begin;
return 0;
}
Similar questions