Is there a way to store user inputs in switch case from one operation and use it across switch operations at run-time.
Example: If its a software for a Bank and I want to take information from the user and validate if his a/c number is correct and also check if he has enough bank balance to withdraw money.
I need to know how to store the value of one operation,so that I could use it for further ops.
 switch(ops)
    {
                            char ac_no;
                            long amt,amt2,init_dep;
                            char name,ac_allocated;
            case OpenAC:
                    {
                            printf("1.Name:\n");
                            scanf("%s",&name);
                            printf("2.A/Cno_allocated:\n");
                            scanf("%s",&ac_allocated);
                            printf("3.Initial deposit:\n");
                            scanf("%d",&init_dep);
                            break;
                    }
            case Deposit:
                    {
                            printf("Enter the a/c number: ");
                            scanf("%s",&ac_no);
                            printf("Amount:Rs. ");
                            scanf("%ld",&amt);
                            break;
                    }
            case Withdraw:
                    {
                            printf("Enter the a/c number: ");
                            scanf("%s",&ac_no);
                            printf("Amount:Rs. ");
                            scanf("%ld",&amt2);
                  {printf("Cannot withdraw.Rs.500 minimum balance mandatory.\n");}
                            break;
                    }
            return ops;
    }
I also tried declaring variables in the switch(ops) to store the value in them(like in the following case to validate the a/c number in the next step but it doesn't help.)
Edited code:
`
                            char ac_no;
                            long amt,amt2,init_dep,dep1;
                            char name,ac_allocated,ac1;
               case OpenAC:
                    {
                            printf("1.Name:\n");
                            scanf("%s",&name);
                            printf("2.A/Cno_allocated:\n");
                            scanf("%s",&ac_allocated);
                            ac_allocated = ac1;
                            printf("3.Initial deposit:\n");
                            scanf("%d",&init_dep);
                            init_dep = dep1;
                            //break;
                    }
            case Deposit:
                    {
                            printf("Enter the a/c number: ");
                            scanf("%s",&ac_no);
                            if(ac_no == ac1)
                            {
                             printf("Amount:Rs. ");
                             scanf("%ld",&amt);
                            }
                            break;
`