Select Git revision
strings-8.c
Forked from
Peter Gerwinski / hp
Source project has a limited visibility.
loops-01.c 178 B
#include <stdio.h>
int main (void)
{
int a = 1;
do
{
if (a <= 10)
{
printf ("%d\n", a);
a++;
}
}
while (a <= 10);
return 0;
}