#include <stdio.h>

int main() {
    int num=0b11010;
    printf("10진수: %d\n", num);
    printf("8진수: %o\n", num);
    printf("16진수: %x\n", num);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: