Salut a tous
Je cherche juste a faire un petit programme en C qui lit ce au'il y a dans list.dat et le reecrit dans paras.dat (dqns un pre;ier te;ps) mais il y a toujours des problemes a l'execution du a.out. Quelqu'un peut-il me corriger ?
Code://#include<fstream> #include<stdio.h> using namespace std; #define N 32 int main() { char name[N]; system("ls >list.dat"); FILE *list;list=fopen("list.dat","r"); FILE *paras;paras=fopen("paras.dat","w") ; while (fscanf(list,"%c",name)) { fprintf(paras,"%c/n",name); } fclose(list); fclose(paras); return 0; }
Merci !
-----