各位好,
有個問題想跟大家請教,
C語言中, printf()可以格式化你要輸出的字串,
Ex: printf("%s test", "a"); ==> "a test"
如果想將printf這樣的格式化字串當成別的字串的子字串,
不知道要怎麼做到呢?
Ex:
Func_ShowLog(unsigned char *str){
printf("%s Test", str);
}
其中str想使用格式化字串(Ex: "Item%d", ItemNum)
要用什麼手法才能做到這樣的功能呢?
請教各位賜教...