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

scanf() และ fscanf() ใน C


ฟังก์ชัน scanf()

ฟังก์ชัน scanf() ใช้เพื่ออ่านอินพุตที่จัดรูปแบบจาก stdin ในภาษา C คืนค่าจำนวนอักขระทั้งหมดที่เขียนไว้ มิฉะนั้นจะคืนค่าเป็นค่าลบ

นี่คือไวยากรณ์ของ scanf() ในภาษา C

int scanf(const char *characters_set)

นี่คือตัวอย่าง scanf() ในภาษา C

ตัวอย่าง

#include <stdio.h>
int main () {
   char s[20];
   printf("Enter a string : ");
   scanf("%s", s);
   printf("\nEntered string : %s\n", s);
   return(0);
}

ผลลัพธ์

Enter a string : Peter!
Entered string : Peter!

ฟังก์ชัน fscanf()

ฟังก์ชัน fscanf() ใช้เพื่ออ่านข้อมูลที่จัดรูปแบบแล้วจากสตรีมที่กำหนดในภาษา C คืนค่าศูนย์ หากไม่สำเร็จ มิฉะนั้น จะส่งคืนสตริงอินพุต หากสำเร็จ

นี่คือไวยากรณ์ของ fscanf() ในภาษา C

int fscanf(FILE *stream_name, const char *set_of_characters)

นี่คือตัวอย่าง fscanf() ในภาษา C

ตัวอย่าง

#include <stdio.h>
#include <stdlib.h>
int main () {
   char str1[10];
   int year;
   FILE * fp;
   fp = fopen ("file.txt", "w+");
   fputs("This is demo text!", fp);
   rewind(fp);
   fscanf(fp, "%s", str1);
   printf("First word = \n%s\n", str1 );
   fclose(fp);
   return(0);
}

ผลลัพธ์

First word =
This