Tahamina_Taha

subeen 2.8

Feb 6th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include<stdio.h>
  2. int main(){
  3.  
  4.     double a=9.6,b=7.8754,sum;
  5.     sum=a+b;
  6.     printf("sum is: %lf\n",sum);
  7.     printf("sum is: %0.2lf\n",sum);
  8.     return 0;
  9. }
Add Comment
Please, Sign In to add comment