Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #inciude <math.h>
  3. int main()
  4. {
  5.     float a,b,c;
  6.     printf("enter the value of a&b\n",a,b);
  7.     scanf("%f %f", &a,&b);
  8.     c = a/b;
  9.      printf("the value of c = %f\n", c );
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement