Q.3 Write C programs for implementation of a simple calculator by using switch statement.
Answers
Answered by
0
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);
Answered by
0
The answer is
answer ok bro .
Explanation:
Mark me as the BRAINLIEST
Similar questions