Advertisement
Guest User

Untitled

a guest
May 18th, 2015
273
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. #include <cs50.h>
  3.  
  4. int main(void)
  5. {
  6.     float change = 4.14;
  7.     change = (int) change;
  8.    
  9.     printf("%f\n", change);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement