Switch demo : Switch « Language Basics « C / ANSI-C






Switch demo

#include <stdio.h>
#include <stdlib.h>

int main()
{
    char  line[10];

    while (1) {
        printf("Enter add(a), delete(d), quit(q): ");
        fgets(line, sizeof(line), stdin);

        switch (line[0]) {
            case 'a':
                printf("Add\n");
                break;
            case 'd':
                printf("Delete\n");
                break;
            case 'q':
                printf("Quit\n");
                exit(0);
            defualt:
                printf("Error:Bad command %c\n", line[0]);
                break;
        }
    }
}
 

           
       








Related examples in the same category

1.a simple 4 function calculator
2.How to use switch: number
3.How to use switch: char
4.Switch: char and nested if
5.Switch inside for loop
6.Switch with int case
7.Switch with char case
8.Get three input at the same time: scanf
9.Console menu: switch with char case
10.Switch with default