ในส่วนนี้เราจะมาดูวิธีการแปลงจำนวนเต็มเป็นสตริง
ตรรกะนั้นง่ายมาก เราจะใช้ฟังก์ชัน sprintf() ฟังก์ชันนี้ใช้เพื่อพิมพ์ค่าหรือบรรทัดบางอย่างลงในสตริง แต่ไม่ใช่ในคอนโซล นี่เป็นข้อแตกต่างระหว่าง printf() และ sprintf() ที่นี่อาร์กิวเมนต์แรกคือบัฟเฟอร์สตริง ที่เราต้องการบันทึกข้อมูลของเรา
ป้อนข้อมูล :ผู้ใช้จะใส่ค่าตัวเลขว่า 42
ผลผลิต :โปรแกรมนี้จะส่งคืนผลลัพธ์ที่เทียบเท่าสตริงของตัวเลขนั้น เช่น “42”
อัลกอริทึม:
Step 1: Take a number as argument Step 2: Create an empty string buffer to store result Step 3: Use sprintf() to convert number to string Step 4: End
โค้ดตัวอย่าง
#include<stdio.h> char* my_itoa(int number) { char str[20]; //create an empty string to store number sprintf(str, "%d", number); //make the number into string using sprintf function return str; } main() { int number; printf("Enter a number: "); scanf("%d", &number); printf("You have entered: %s", my_itoa(number)); }
ผลลัพธ์
Enter a number: 56 You have entered: 56