下⾯C++代码执⾏后的输出是( )。
1 int main( ) 2 { 3 cout << (3 |16) << endl; 4 5 cout << endl; 6 return 0; 7 }
3
16
19
48