All operation with two varibles

#include int main() { float a,b; printf("Entre any two values"); scanf("%f%f",&a,&b); float c=a+b; float d=a-b; float e=a*b; float f=a/b; printf("Addition = %.1f\n",c); printf("Subraction = %.1f\n",d); printf("Multi = %.1f\n",e); printf("Division = %.1f\n",f);

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.