char c = '5';int n = c - '0';//n=5
根据输入的int型参数,与字符串拼接。
char*可以替换为char[]
int num = 1;
char tmpStr[5];sprintf(tmpStr, "Test%d", num); //tmpStr = Test1