Comme je l'ai dit c'est comme précédemment, mais avec une fonction différente :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdio.h>
int main(int argc, char** argv){
FILE* fp = fopen("logo_cnet.txt", "r");
if(fp != NULL){
while(!feof(fp)){
int currentChar = fgetc(fp);
if(currentChar != EOF){
printf("%c", (char)currentChar);
}
}
fclose(fp);
}
return 0;
}
|
|