#include<stdio.h>
main()
{
float a,b,div;
printf("Enter the value of a & b:\n");
scanf("%f%f",&a,&b);
div=a/b;
printf("div=%f",div);
getch();
}
main()
{
float a,b,div;
printf("Enter the value of a & b:\n");
scanf("%f%f",&a,&b);
div=a/b;
printf("div=%f",div);
getch();
}
No comments:
Post a Comment