fgetc/fputc: Lecture/écriture...
Lors des opérations d'entrée/sortie sur des fichiers, nous pouvons lire ou écrire caractère par caractère, ou ligne par ligne.
Pour les opérations caractère par caractère, nous emploierons les fonctions fgetc et fputc.
Syntaxe
#include <stdio.h>
/* Suite du code ... */
int fgetc(FILE *pointeur_entree);
int fputc(int caractere, FILE *pointeur_sortie);
/* Suite du code ... */
int fgetc(FILE *pointeur_entree);
int fputc(int caractere, FILE *pointeur_sortie);
/* Suite du code ... */
Fonction fgetc :
- Lit le caractère courant depuis le fichier d'entrée spécifié.
- La constante EOF est renvoyée si le pointeur atteint la fin du fichier.
Fonction fputc :
- Ecrit un caractère à l'emplacement courant du pointeur de fichier, dans le fichier de sortie spécifié.
- La constante EOF est renvoyée en cas d'erreur.
Exemple
Le programme « sauveconf » nous permet de copier le contenu du fichier config.sys dans un fichier nommé config.txt.
Code c (sauveconf.c) (19 lignes)
#include <stdio.h> void main (void) { FILE *input, *output; int lettre; else { //lecture et ecriture de chaque caractere dans le fichier } }
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 29/12/2002, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/c-fgetc-fputc.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.