2011. 9. 26. 17:40
개발 이야기/C
◈ Test1.
for (i = 0; i < 64; i++) {
test = 1 << i;
debug(1, "[%2d] %llu\n", i, test);
}
◈ Test2.
for (i = 0; i < 64; i++) {
test = 1LL << i;
debug(1, "[%2d] %llu\n", i, test);
}
결과는?!
for (i = 0; i < 64; i++) {
test = 1 << i;
debug(1, "[%2d] %llu\n", i, test);
}
◈ Test2.
for (i = 0; i < 64; i++) {
test = 1LL << i;
debug(1, "[%2d] %llu\n", i, test);
}
결과는?!