在C語言中,可以使用 sprintf
函數將整數轉換為字符串。 sprintf
函數的原型如下:
int sprintf(char *str, const char *format, ...);
其中,str
是目標字符串的指針,format
是格式化字符串,后面的參數是要轉換的整數。
下面是一個示例代碼:
#include <stdio.h>
int main() {
int num = 12345;
char str[10];
sprintf(str, "%d", num);
printf("The integer is: %d\n", num);
printf("The string is: %s\n", str);
return 0;
}
輸出結果為:
The integer is: 12345
The string is: 12345
在上面的示例中,使用 sprintf
函數將整數 num
轉換為字符串,然后將字符串存儲在數組 str
中。最后,通過 printf
函數將整數和字符串分別打印出來。