Advertisement
Dprogrammed1

C ques 11

Mar 6th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2.     int main()
  3.     {
  4.         int a = 10;
  5.         if (a == a--)
  6.             printf("TRUE 1\t");
  7.         a = 10;
  8.         if (a == --a)
  9.             printf("TRUE 2\t");
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement