>FromYourCode();

Source code quote in C++247

 May 06, 2016 am31 01:30
void menu() {
    char input;
    // something into input...
    switch(input) {
        case '1':
            // ......
            printf(".......");
            break;
        case '2':
            //......
            main(); // go back to menu
            break;
    // (omitted)

int main() {
    menu();
    return 0;
}

Check similar quotes

Share this quote