Maplewing

1/10 C: Special printf

Jan 9th, 2016
36
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.     printf("%d\n", 53);
  5.     printf("%3d\n", 53);
  6.     printf("%03d\n", 53);
  7.    
  8.     printf("%lf\n", 3.1415926);
  9.     printf("%.2lf\n", 3.1415926);
  10.    
  11.     return 0;
  12. }
Add Comment
Please, Sign In to add comment