creat simple calculator using switch statement in 'c'
Answers
Answered by
2
Answer:
simple calculator, using switch statement in C
#include<stdio.h>
#include<conio.h>
void main()
int num1,num2,opt;
printf("Enter the first Integer:\n");
scanf("%d",&num1);
printf("Enter the second Integer:\n");
scanf("%d",&num2);
Similar questions