First off, I am relatively new to C programming, and wanted to write a program that would be able to accept user input and then pass that on to a switch/case and return output based on the initial choice. I was able to do this while using the int data type, but I would like some help doing the same while taking input as a char.
#include <stdio.h>
double x = 1;
double y = 3;
char inputLet[1];
double chooseEquation(char notLet){
    char notNotLet = notLet;
    printf("notLet here is: %c \n", notLet);
    switch(notLet){
        case 'A':
            x += y;
            printf("Case1 reached! \n");
            break;
        case '2':
            x += -y;
            break;
        case '3':
            x -= y;
            break;
        case '4':
            x -= -y;
            break;
        case '5':
            x *= y;
            break;
        case '6':
            x *= -y;
            break;
        default :
        printf("defaulting! btw: %c \n", notNotLet);
        x = 0;
    }
    printf("x has been set? Here: %.2f\n", x);
    return x;
}
int main(){
    printf("Welcome, please pick a letter from A to F (uppercase for now) in order to choose an equation: \n");
    scanf(" %c", &inputLet);
    printf("The letter you chose is: %s \n", inputLet);
    double outputLet = chooseEquation(inputLet);
    printf("Your equation evaluated to: %.2f \n", outputLet);
    return 0;
}
Somehow, no matter the input, the character that the switch looks at becomes Q
However, if I replace this line:
char inputLet[1];
with this line:
char inputLet;
The program segmentation faults.
Any help would be much appreciated.
 
    