Advertisement
TwITe

Untitled

Aug 4th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. int x = 2, y = 2;
  2.     int c = x & y;
  3.     cout << c;
  4.     cout << endl;
  5.     cout << x && y;
  6.     cout << endl;
  7.     cout << (x & y);
  8.     cout << endl;
  9.     cout << (x && y);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement