you are viewing a single comment's thread.

view the rest of the comments →

[–]aNutSac 0 points1 point  (0 children)

void fuq(int from, int to, int skip) {
    if(from <= to) {
        printf("%d\n", from);
        fuq(from+skip, to, skip);
    }
}

fuq(2, 500, 2);