Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. int main ()
  2.  
  3. {
  4. int x = 3;
  5.  
  6.  
  7. printf("The value of (x == 3) is %d.\n", x == 3);
  8. printf("The value of (x != 3) is %d\n", x != 3);
  9.  
  10. printf("The value of (3*x - 4 <= 3) is %d.\n", 3*x - 4 <=3);
  11.  
  12. printf("The value of (x >= 3) is %d.\n", x >= 3);
  13.  
  14.  
  15. printf("The value of (2*x %% 3 > 3) is %d.\n", 2*x % 3 >3);
  16.  
  17. printf("The value of (25 / (2*x) < 3) is %d.\n", 25 / (2*x) <3);
  18.  
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement