| ||||||
| 5/17 |
| 2003/3/14 [Computer/SW/Languages/C_Cplusplus] UID:27692 Activity:high |
3/13 In C++, what is the type of the expression (01 << i)?
Is it an int with all bits set to 0 save 1 at bit position i, or
something weird and scary?
\_ It's an int, just as you described.
\_ thanks. |