Programmer en c
Fermé
info_net_com
Messages postés
26
Date d'inscription
dimanche 26 décembre 2010
Statut
Membre
Dernière intervention
6 juillet 2011
-
20 févr. 2011 à 11:12
fiddy Messages postés 11069 Date d'inscription samedi 5 mai 2007 Statut Contributeur Dernière intervention 23 avril 2022 - 20 févr. 2011 à 12:58
fiddy Messages postés 11069 Date d'inscription samedi 5 mai 2007 Statut Contributeur Dernière intervention 23 avril 2022 - 20 févr. 2011 à 12:58
A voir également:
- Programmer en c
- Programmer sms - Guide
- Programmer un mail gmail - Guide
- Programmer en basic sous windows 10 - Télécharger - Édition & Programmation
- Programmer un mail outlook - Guide
2 réponses
fiddy
Messages postés
11069
Date d'inscription
samedi 5 mai 2007
Statut
Contributeur
Dernière intervention
23 avril 2022
1 841
20 févr. 2011 à 11:48
20 févr. 2011 à 11:48
EOF(test.txt)
EOF n'est pas une fonction. Donc normal que ça ne marche pas.
Utilise plutôt la fonction feof
EOF n'est pas une fonction. Donc normal que ça ne marche pas.
Utilise plutôt la fonction feof
jisisv
Messages postés
3645
Date d'inscription
dimanche 18 mars 2001
Statut
Modérateur
Dernière intervention
15 janvier 2017
934
Modifié par jisisv le 20/02/2011 à 12:41
Modifié par jisisv le 20/02/2011 à 12:41
Essaye ceci:
Johan
Gates gave ^H sold you the windows.
GNU gave us the whole house.(Alexandrin)
johand@osiris:~/src/ccm$ cat affich-20923578-programmer-en-c.c #include <stdio.h> #include <stdlib.h> #define SOURCE "source.txt" #define DESTINATION "destination.txt" int main(int argc, char *argv[]) { char h[10]; int c = 0 ; FILE *fildest = NULL, *filorg = NULL; printf("hello") ; fildest = fopen(DESTINATION, "w+") ; filorg = fopen(SOURCE, "r+") ; if ( NULL != fildest) { printf("On peut lire et écrire dans le fichier %s\n", DESTINATION); } else { printf("Impossible d'ouvrir le fichier%s\n", DESTINATION); return 1; } if ( NULL != filorg ) { printf("On peut lire et écrire dans le fichier %s\n", SOURCE); } else { printf("Impossible d'ouvrir le fichier %s\n", SOURCE); return 1; } printf("Entrer votre texte: "); scanf("%10s", h); fputs(h, fildest); while ( !(feof(filorg))) { c = fgetc(filorg); fputc((int)c, fildest); printf("%c", c); } ; puts("=====Terminer======="); fclose(filorg) ; fclose(fildest) ; return 0; } johand@osiris:~/src/ccm$cat source.txt total 44 -rw-r--r-- 1 johand johand 2312 2 jan 05:37 19639577.php -rw-r--r-- 1 johand johand 856 30 déc 06:16 20337537.c -rwxr-xr-x 1 johand johand 6754 19 fév 19:43 20916919-langage-c -rw-r--r-- 1 johand johand 1080 19 fév 19:40 20916919-langage-c.c -rw-r--r-- 1 johand johand 2959 19 fév 17:54 20916919-langage-c.c~ -rwxr-xr-x 1 johand johand 5675 20 fév 12:25 affich-20923578-programmer-en-c -rw-r--r-- 1 johand johand 1006 20 fév 12:25 affich-20923578-programmer-en-c.c -rw-r--r-- 1 johand johand 725 20 fév 11:41 affich-20923578-programmer-en-c.c~ -rw-r--r-- 1 johand johand 1007 20 fév 12:26 destination.txt -rw-r--r-- 1 johand johand 0 20 fév 12:27 source.txt johand@osiris:~/src/ccm$ ./affich-20923578-programmer-en-c helloOn peut lire et écrire dans le fichier destination.txt On peut lire et écrire dans le fichier source.txt Entrer votre texte: 0123456789 total 44 -rw-r--r-- 1 johand johand 2312 2 jan 05:37 19639577.php -rw-r--r-- 1 johand johand 856 30 déc 06:16 20337537.c -rwxr-xr-x 1 johand johand 6754 19 fév 19:43 20916919-langage-c -rw-r--r-- 1 johand johand 1080 19 fév 19:40 20916919-langage-c.c -rw-r--r-- 1 johand johand 2959 19 fév 17:54 20916919-langage-c.c~ -rwxr-xr-x 1 johand johand 5675 20 fév 12:25 affich-20923578-programmer-en-c -rw-r--r-- 1 johand johand 1006 20 fév 12:25 affich-20923578-programmer-en-c.c -rw-r--r-- 1 johand johand 725 20 fév 11:41 affich-20923578-programmer-en-c.c~ -rw-r--r-- 1 johand johand 1007 20 fév 12:26 destination.txt -rw-r--r-- 1 johand johand 0 20 fév 12:27 source.txt ?=====Terminer======= johand@osiris:~/src/ccm$ cat destination.txt 0123456789total 44 -rw-r--r-- 1 johand johand 2312 2 jan 05:37 19639577.php -rw-r--r-- 1 johand johand 856 30 déc 06:16 20337537.c -rwxr-xr-x 1 johand johand 6754 19 fév 19:43 20916919-langage-c -rw-r--r-- 1 johand johand 1080 19 fév 19:40 20916919-langage-c.c -rw-r--r-- 1 johand johand 2959 19 fév 17:54 20916919-langage-c.c~ -rwxr-xr-x 1 johand johand 5675 20 fév 12:25 affich-20923578-programmer-en-c -rw-r--r-- 1 johand johand 1006 20 fév 12:25 affich-20923578-programmer-en-c.c -rw-r--r-- 1 johand johand 725 20 fév 11:41 affich-20923578-programmer-en-c.c~ -rw-r--r-- 1 johand johand 1007 20 fév 12:26 destination.txt -rw-r--r-- 1 johand johand 0 20 fév 12:27 source.txt
Johan
Gates gave ^H sold you the windows.
GNU gave us the whole house.(Alexandrin)
fiddy
Messages postés
11069
Date d'inscription
samedi 5 mai 2007
Statut
Contributeur
Dernière intervention
23 avril 2022
1 841
20 févr. 2011 à 12:58
20 févr. 2011 à 12:58
Salut,
Petite erreur que je me permets de signaler :
scanf("%10s", h);
Ce n'est pas 10 mais 9, qu'il faut mettre.
Cdlt,
Petite erreur que je me permets de signaler :
scanf("%10s", h);
Ce n'est pas 10 mais 9, qu'il faut mettre.
Cdlt,