I hope you are having a nice day. Thank you for taking the time to read my question.
I am still a beginner in the C language. My professor has asked me to program a scientific calculator. The calculator should be able to read and store user-defined variables and work with them. for example, I should be able to enter a=5 b=9 etc. after that the program should calculate, for instance, a+1= 6, or a+b=14 and show it to the user. Of course, the user decides if the operation is addition, subtraction, division or multiplication.
The user should also be able to enter such input: e.g. c=5+9.
I have started working on the calculator, unfortunately, I have just been able to only allow the user to define one variable at a time and work with it.
For example: 
a=7
7+a=14
That's all I could do. I asked my professor for help and he keeps telling me that I have to to teach the program how to separate between what is before the "=" and what's after it. Thank you in advance for every help or piece of advice you give This is the code I came up with
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
int main() {
    char situation;
    float operand1, operand2;
    char i = 0;
    char ch;
    char op;
    int operand = 0;
    int j, digit, number[10] = {};
    int j2 = 0;
    char str[100] = { 0 };
    while (1) {
        printf("\n\na) To calculate choose me :)");
        printf("\n\nb) If you want to calculate with variables, choose me:");
        printf("\n\nc) To Exit choose me :(\n\n");
        scanf_s("%c", &situation, 1);
        while ((getchar()) != '\n');
        switch (situation) {
        case 'a':
            printf("type in some arithmetic terms : \n");
            scanf_s("%f", &operand1);
            scanf_s("%c", &op, 1);
            scanf_s("%f", &operand2);
            while ((getchar()) != '\n');
            switch (op) {
            case '+':
                printf("\n\n%.2f + %.2f = %.2f\n\n", operand1, operand2, operand1 + operand2);
                break;
            case '-':
                printf("\n\n%.2f - %.2f = %.2f\n\n", operand1, operand2, operand1 - operand2);
                break;
            case '*':
                printf("\n\n%.2f * %.2f = %.2f\n\n", operand1, operand2, operand1 * operand2);
                break;
            case '/':
                printf("\n\n%.2f / %.2f = %.2f\n\n", operand1, operand2, operand1 / operand2);
                break;
            default:
                printf("\n\nERROR!\n\n");
            }
            break;
        case 'b':
            printf("\n\nTo return to the main menu please enter any capital letter of your choosing\n\n");
            printf("\n\nWhen calculating with a variable, please always write the variable on the right side, Thank you. You may start:\n\n");
            do {
                scanf_s("%s", &str, 99);
                for (i = 0; i < 100; i++) {
                    if (str[i] == '=') {
                        for (j = 0; j < strlen(str); j++) {
                            ch = str[j];
                            if (ch >= '0' && ch <= '9') {
                                digit = ch - '0';
                                number[j2] = j2 * 10 + digit;
                                //printf("%d", number);
                            }
                        }
                        scanf_s("%d", &operand);
                        scanf_s("%c", &op, 1);
                        scanf_s("%d", &number[j2]);
                        while ((getchar()) != '\n');
                        switch (op) {
                        case '+':
                            printf("\n\n%d + %c = %d\n\n", operand, str[0], operand + number[j2]);
                            break;
                        case '-':
                            printf("\n\n % d - % c = % d\n\n", operand, str[0], operand - number[j2]);
                            break;
                        case '*':
                            printf("\n\n % d * % c = % d\n\n", operand, str[0], operand * number[j2]);
                            break;
                        case '/':
                            printf("\n\n % d / % c = % d\n\n", operand, str[0], operand / number[j2]);
                            break;
                        default:
                            printf("\n\nERROR!\n\n");
                        }
                        break;
                    }
                }
            } while (islower(str[0]));
            while ((getchar()) != '\n');
            break;
        case 'c':
            printf("\n\goodbye\n\n");
            exit(0);
            break;
        default:
            printf("\n\nThis is not an acceptable input. Please Try again!");
        }
    }
}
 
    