montimaj

test.c

Jun 28th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main() {
  4.     float a, b;
  5.     printf("Enter two numbers: ");
  6.     scanf("%f %f", &a, &b);
  7.     float c = a + b;
  8.     printf("c1 = %f\n", c);
  9.     return 0;
  10. }
Add Comment
Please, Sign In to add comment