Question: 3-2 Please do the coding in C language! 3.2 Here is a calculator program. The program gives a prompt and waits for user to enter
3-2
Please do the coding in C language!


3.2 Here is a calculator program. The program gives a prompt and waits for user to enter a number, operator and another number and gives the output like this Type a number operator number separated by a space 12 34 12.00 34.00 46.00 Another run looks like this: Type a number operator number separated by a space 12 12 12.00 12.00 144.00 #include stdio.h int main() int firstN int second char op; printf("Type a number, operator number separated by a space scanf ("%d %C %d", &firstN, &op, &second N)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
