Advertisement
kamandos

HomeWork7

Jul 10th, 2022
662
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.     float  i = 123.45678;
  6.     float  g = -12.3;
  7.     float  t = 56.789;
  8.     printf("Value of c = %.2f\n.2f%+.2f\n",i,g,t);
  9.  
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement