Advertisement
Dprogrammed1

C ques 9

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