C Program to illustrate the use of arithmetic operators in floating point number

In this tutorial,  you get to learn about how u will make use of the C arithmetic operators in floating point numbers.

#include <stdio.h>
 int main() 
{
 float r1, r2,mul,sum, div, rem, sub; 
printf("Enter the First number:");
 scanf("%f", &r1); 
printf("Enter the secod number:");
 scanf("%f", &r2);
 sum=r1+r2; 
printf("The sum of given two numbers is:%f\n",sum); 
mul=r1*r2;
printf("The multiplication of two numbers is:%f\n", mul); 
div = r1/r2; 
printf("The division of two numbers is:%f\n", div); 
sub=r1-r2; 
printf("The subtration of rwo numbers is:%f\n", sub);
return 0;
 }

The output of the code above is displayed as below in the console screen.

 

SHARE C Program to illustrate the use of arithmetic operators in floating point number

You may also like...

Leave a Reply

Your email address will not be published.

Share