可以用函数itoa将十进制数转换成对应二进制数的字符串,然后在输出该字符串。int num= 15;char str[8];itoa(num,str,2);printf(str);其中itoa函数的第三个参数就是你要转换的进制数。