정수 125를 10진수, 8진수, 16진수로 출력하는 프로그램을 작성하세요

Untitled


#include <stdio.h>

int main()
{
    printf("%s %d \\n", "10진수", 125);
    printf("%s %o \\n", "8진수", 125);
    printf("%s %x \\n", "16진수", 125);
}