Advertisement
Guest User

Untitled

a guest
Jan 8th, 2012
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. #include "nagyegesz.h"
  6.  
  7. int main()
  8. {
  9.     unsigned aaa = 5;
  10.     unsigned bbb = 3;
  11.     unsigned c = aaa ^ bbb;
  12.  
  13.     cout << "Eredmeny: " << c << endl;
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement