Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

goto is good

Name: Anonymous 2012-06-11 22:02

if you think otherwise you're a trendfag. goto is far more efficient than function calls for short blocks of code (lol compiler ignoring inline) and have a lot of neat applications.

Name: Anonymous 2012-06-12 16:18

void fizzbuzz(int end){
    int i;
    for(i = 3; i < end; i += 3)
        printf("Fizz\n");
    for(i = 5; i < end; i += 5)
        if(i % 3)
            printf("Buzz\n");
        else
            printf("FizzBuzz\n");
}


if order is not important

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List