ในส่วนนี้ เราจะมาดูวิธีการแปลงจำนวนเต็มเป็นสตริง
ตรรกะนั้นง่ายมาก เราจะใช้ฟังก์ชัน sprintf() ฟังก์ชันนี้ใช้เพื่อพิมพ์ค่าหรือบรรทัดบางอย่างลงในสตริง แต่ไม่ใช่ในคอนโซล นี่เป็นข้อแตกต่างระหว่าง printf() และ sprintf() ที่นี่อาร์กิวเมนต์แรกคือบัฟเฟอร์สตริง ที่เราต้องการบันทึกข้อมูลของเรา
Input: User will put some numeric value say 42 Output: This program will return the string equivalent result of that number like “42”
อัลกอริทึม
Step 1: Take a number from the user 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> main() { char str[20]; //create an empty string to store number int number; printf("Enter a number: "); scanf("%d", &number); sprintf(str, "%d", number);//make the number into string using sprintf function printf("You have entered: %s", str); }
ผลลัพธ์
Enter a number: 46 You have entered: 46