模拟实现printf("hello %s%c %d\n","worl", 'd', 1234); void PutInt(int num)//整型变量转化为字符输出函数 {if (num > 9){PutInt(num / 10);//递归实现}putchar(num % 10 + ……