22 lines
437 B
C
22 lines
437 B
C
|
#include<stdlib.h>
|
||
|
#include<stdio.h>
|
||
|
#include<string.h>
|
||
|
|
||
|
int main(int argc, char** argv){
|
||
|
FILE* fichier = NULL;
|
||
|
char ligne[100];
|
||
|
int numLigne=0;
|
||
|
if (argc > 1){
|
||
|
fichier = fopen(argv[1],"r");
|
||
|
if (fichier){
|
||
|
for (numLigne=0; fgets(ligne,100,fichier)!=NULL; numLigne++){
|
||
|
printf("%d) %s",numLigne, ligne);
|
||
|
}
|
||
|
}
|
||
|
else{
|
||
|
printf("%s n'existe pas ou ne peut pas s'ouvrir",argv[1]);
|
||
|
}
|
||
|
}
|
||
|
return 0;
|
||
|
}
|