How to delete a file from the D: \ Files \ 1.txt directory on C? without messages and confirmations
#include < stdio.h > // Для printf, remove int main (void) { printf (“Удаление файла: ”); // Удаление файла if (-1 == remove (“test.txt”)) printf (“Ошибка\n”); else printf (“Выполнено\n”); return 0; }