Advertisement
kamandos

HomeWork1

Jul 7th, 2022
625
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     signed int a = 250;
  6.     char w = 250;
  7.     long long int e = 458398;
  8.     unsigned long long int r = 10000000000000;
  9.     signed long long int t = -900000000000000000;
  10.     printf("%d", "%c", "%d", "%d", a, w, e, r, t);
  11.     return 0;
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement