Tahamina_Taha

ex3

Feb 5th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int a=10,b=15;
  5.     float c=12.6;
  6.     printf("a and b: %d %d\n",a,b);
  7.     printf("c: %0.1f",c);
  8.     return 0;
  9. }
Add Comment
Please, Sign In to add comment