while.c 139 Bytes
Newer Older
lxq's avatar
lxq committed
1 2 3 4 5 6 7 8 9 10 11
int main() {
    int a;
    int i;
    a = 10;
    i = 0;
    while (i < 10) {
        i = i + 1;
        a = a + i;
    }
    return a;
}