블로그는 나의 힘!
[ Programing ]/C++2025. 5. 7. 20:52

#define CALCULATION_LSH(x)     (1 << (x))     // 32bit 시프트 방식.
#define CALCULATION_LSH_64(x)     (1i64 << (x))      // 64bit 시프트 방식.


 

Posted by Mister_Q