Question: C programming i try to make calculator for just summmation: please could you check what is wrong with my could. #include int main() { float
C programming
i try to make calculator for just summmation: please could you check what is wrong with my could.
#include
{ float x,y; printf("enter value of x="); scanf("%f ", &x); printf("enter value of y="); scanf("%f ", &y); printf("the given value %.2f and %.2f is %2f"", x, y, x+y");
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
