Integer Constants
int main(){
printf("%d ", 011);
//數字011, 八進位
printf("%d ", 0x11);
//數字0x11, 十六進位
printf("%o ", 10);
//把10用八進位印出來
printf("%x ", 25);
//把25用十六進位印出來
}
output
/*
9 17 12 19
*/
int main(){
printf("%d ", 011);
//數字011, 八進位
printf("%d ", 0x11);
//數字0x11, 十六進位
printf("%o ", 10);
//把10用八進位印出來
printf("%x ", 25);
//把25用十六進位印出來
}
output
/*
9 17 12 19
*/
沒有留言:
張貼留言