MIPI_BaseC_WebinarFRTK/10_Lecture10/00_file_p5.c
2024-11-13 09:22:28 +03:00

11 lines
453 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdio.h>
int main(void){
FILE *f;
f = fopen("in.txt","w"); // открытие файла in.txt на запись
fclose(f); //Закрытие файла. После окончания работы с
//файлом необходимо убедиться, что все записанные данные попали
//на диск, и освободить все ресурсы, связанные с ним.
return 0;
}