1 arithmetic
// Program 1 : Arithmetic Operations Program
#include<stdio.h>
int main()
{
float no1 , no2 ;
float add , subs , multi , div ;
printf("Enter First Number : \n");
fflush(stdout);
scanf("%f",&no1);
printf("Enter Second Number : \n");
fflush(stdout);
scanf("%f",&no2);
add = no1 + no2 ;
printf("\n The Addition is : %f", add);
subs = no1-no2 ;
printf("\n The Subtraction is : %f", subs);
multi = no1*no2 ;
printf(" \n The Multiplication is : %f", multi);
div = no1/no2 ;
printf("\n The Division is : %f", div);
return 0 ;
}