I am working on a mini project in C.I am making a Calculator & Converter in C using nested switch case.And here "%c" is not working for "char choice",instead of that it is working with "%s" although I did'nt declare any "string" in the program. Here is the code of the project:-
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c,ch;
char choice;
clrscr();
printf("1.Calculator\n2.Convrter\n\n");
printf("Enter your choice : ");
scanf("%d",&ch);
switch(ch)
{
    case 1:printf("1.Addition(A)\n2.Subtraction(S)\n3.Multiplication(M)\n4.Division(D)\n5.Module(P)\n\n");
    printf("Enter your choice : ");
    scanf("%c",&choice);
    switch(choice)
    {
    case 'A':printf("Provide the value of a : ");
    scanf("%d",&a);
    printf("Provide the value of b : ");
    scanf("%d",&b);
    printf("\n");c=a+b;
    printf("%d",c);
    break;
    case 'S':printf("Provide the value of a : ");
    scanf("%d",&a);
    printf("Provide the value of b : ");
    scanf("%d",&b);
    printf("\n");c=a-b;
    printf("%d",c);
    break;
    case 'M':printf("Provide the value of a : ");
    scanf("%d",&a);
    printf("Provide the value of b : ");
    scanf("%d",&b);
    printf("\n");c=a*b;
    printf("%d",c);
    break;
    case 'D':printf("Provide the value of a : ");
    scanf("%d",&a);
    printf("Provide the value of b : ");
    scanf("%d",&b);
    printf("\n");c=a/b;
    printf("%d",c);
    break;
    case 'P':printf("Provide the value of a : ");
    scanf("%d",&a);
    printf("Provide the value of b : ");
    scanf("%d",&b);
    printf("\n");c=a%b;
    printf("%d",c);
    break;
    default:printf("Invalid Input");
    }
    break;
}
getch();
}
