Do while loop for your selection : Do While « Language Basics « C / ANSI-C






Do while loop for your selection

    
#include <stdio.h>

int main(void) {
    char ch;
    
    do {
        printf("Load, Save, Edit, Quit?\n");
        do {
            printf("Enter your selection: ");
            ch = getchar();
        } while(ch!='L' && ch!='S' && ch!='E' && ch!='Q');

        if(ch == 'Q') {
            printf("Exit.");
        }

    } while(ch != 'Q');
    
    return 0;
}

           
       








Related examples in the same category

1.Reversing the digits: do whileReversing the digits: do while
2.Do while loopDo while loop
3.A flag: informs a certain condition has occuredA flag: informs a certain condition has occured
4.Do while with char value as condition
5.Do while loop with continueDo while loop with continue
6.Nested for loop inside a do while loop