✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dado este código:
...#define FILE "file.txt"int main(void) { int file; if ((file = open(FILE, O_CREATE | O_TRUNC | O_RDWR) == -1) { // Imprimimos error ... }; close(file); ...}¿Se ha borrado del disco el fichero FILE?