#include <stdio.h>
#include <iostream.h>
Go to the source code of this file.
Functions | |
int | main () |
|
Definition at line 4 of file 3.cpp. 00005 { 00006 int a = 255; 00007 00008 00009 int b = a; 00010 00011 b ^= 127; 00012 00013 cout << a << ' ' << b <<endl; 00014 00015 00016 return 0; 00017 } |