Revision 69ff297d9661f28f560f62b2a84129fd8d1e3025 authored by a1ex on 03 May 2014, 10:41:54 UTC, committed by a1ex on 03 May 2014, 10:41:54 UTC
1 parent f29bd20
Raw File
04_for.c
#include <stdio.h>

int Count;

for (Count = 1; Count <= 10; Count++)
{
    printf("%d\n", Count);
}

void main() {}
back to top