Files
clearn/while1.c

14 lines
173 B
C
Raw Permalink Normal View History

2017-02-07 20:03:49 +00:00
#include <stdio.h>
int main()
{
int i;
i = 0;
puts ("\x1b[2JWhile - Schleife\n");
while ( i < 10 )
{
i = i + 1;
printf ("Variable i ist nun %d\n",i);
}
return(0);
}