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

C or C++

Name: Anonymous 2011-07-14 11:01

Best choice for a beginner?

Name: Anonymous 2011-07-20 9:32

switch > if

compare


if (a < b) {
    doSomething();
} else {
    doSomethingElse();
}


vs


switch (a < b) {
case 1:
    doSomething();
    break;
case 0:
    doSomethingElse();
}

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