Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

C โปรแกรมแปลงตัวเลขเป็นสตริง


ในส่วนนี้ เราจะมาดูวิธีการแปลงตัวเลข (จำนวนเต็มหรือทศนิยมหรือข้อมูลประเภทตัวเลขอื่นๆ) เป็นสตริง

ตรรกะนั้นง่ายมาก เราจะใช้ฟังก์ชัน sprintf() ฟังก์ชันนี้ใช้เพื่อพิมพ์ค่าหรือบรรทัดบางอย่างลงในสตริง แต่ไม่ใช่ในคอนโซล นี่เป็นข้อแตกต่างระหว่าง printf() และ sprintf() ที่นี่อาร์กิวเมนต์แรกคือบัฟเฟอร์สตริง ที่เราต้องการบันทึกข้อมูลของเรา

Input: User will put some numeric value say 42.26
Output: This program will return the string equivalent result of that number like "42.26"

อัลกอริทึม

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
   float number;
   printf("Enter a number: ");
   scanf("%f", &number);
   sprintf(str, "%f", number);   //make the number into string using sprintf function
   printf("\nYou have entered: %s", str);
}

ผลลัพธ์:

Enter a number: 46.3258
You have entered: 46.325802