HristoBaychev

3X

Oct 5th, 2021 (edited)
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4.  int main()
  5.  {
  6.     char x = 8;
  7.     x = x - 2;
  8.     x = x + 6;
  9.     x = (x - 10) + 2;
  10.  
  11.     printf("x = %d", x);
  12.  
  13.     return 0;
  14.  }
Add Comment
Please, Sign In to add comment