C para Schleife
int i;
for(i=0; i<5; i++) {
printf("Zahl %d\n", i+1);
}
Frail Fly
int i;
for(i=0; i<5; i++) {
printf("Zahl %d\n", i+1);
}