This is my code for simple calculate with reverseing process it isnt work properly 😢😢😢😢😢😢
#include<stdio.h> int main() { printf("*********************************************\n"); printf("WELCOME TO INTEGER SIMPLE CALCULATER\n"); printf("*********************************************\n"); printf("INTEGERS ONLY\n"); int a,b,c; char co,ch; print: printf("Enter first integer: \n");//getting first number scanf("%d",&a); printf("Enter second integer: \n");//getting second number scanf("%d",&b); printf("\nAdd(1), Subtract(2), Multiply(3), Divide(4): ");//getting operations scanf("%d",&co); printf("\n"); switch(co) { case(1)://if ADD c = a + b; printf("%d + %d = %d\n", a, b, c); break; case(2)://if SUBSTRACT c = a - b; printf("%d - %d = %d\n", a, b, c); break; case(3)://if MULTIPLY c = a * b; printf("%d