les fichiers en c

Solutions on MaxInterview for les fichiers en c by the best coders in the world

showing results for - "les fichiers en c"
Amy
28 Oct 2019
1int main(int argc, char *argv[])
2{
3    remove("test.txt");
4
5    return 0;
6}
7