Guest User

Untitled

a guest
May 16th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.11 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void main() {
  4.  
  5. int i = 0;
  6. i++;
  7.  
  8. double j = 0;
  9. j++;
  10.  
  11. printf("%d %f", i, j);
  12.  
  13. }
Add Comment
Please, Sign In to add comment