Have a Read!

Hi Everyone.
The idea for this page is to provide new c users simple c tutorials to learn how to develop the logic and more importantly correct way to write syntax.
ENJOY !!!

Tuesday, January 25, 2011

C PROGRAM FOR SUM DIFFERENCE MULTIPLICATION DIVISION IN FLOAT

#include<stdio.h>
int main () {

float x,y,sum,difference,product,division;

printf("ENTER THE NUMBERS\n");

scanf("%d%d",&x,&y);

sum=x+y;

difference=x-y;

product=x*y;

division=x/y;

printf("THE SUM IS : %d\n",sum);

printf("THE DIFFERENCE IS : %d\n",difference);

printf("THE PRODUCT IS : %d\n",product);

printf("THE DIVISION RESULT IS %d\n",division);

return 0;
}

No comments:

Post a Comment

Related Posts with Thumbnails