All pastes #730845 Raw Edit

Someone

public text v1 · immutable
#730845 ·published 2007-10-09 15:48 UTC
rendered paste body
#include <stdio.h>

int main(){
        int x =10;
        int i;
        for (i=0; i<10; i++){
                printf("%i\n", x+2);
        }
}
----
#include <stdio.h>

int main(){
        int i;
        for (i=0; i<10; i++){
                printf("%i\n", 12);
        }
}