remove - overview

Nasza ocena:

3
Wyświetleń: 581
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
remove  - overview - strona 1

Fragment notatki:

remove (unlink) Removes a file specified by filename int remove(const char *filename); • Example: #include int main(void) { char file[80]; /* prompt for file name to delete */ printf("File to delete: "); fgets(file,80,stdin); /* delete the file */ if (remove(file) == 0) printf("Removed %s.\n",file); else perror("remove"); return 0; } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz