landy
Full Member | Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору Можно создавать файл вызовом fopen_s в режиме "w", оно возвращает структуру FILE Добавлено: пример из msdn: Код: // crt_ftell.c // This program opens a file named CRT_FTELL.C // for reading and tries to read 100 characters. It // then uses ftell to determine the position of the // file pointer and displays this position. #include <stdio.h> FILE *stream; int main( void ) { long position; char list[100]; if( fopen_s( &stream, "crt_ftell.c", "rb" ) == 0 ) { // Move the pointer by reading data: fread( list, sizeof( char ), 100, stream ); // Get position after read: position = ftell( stream ); printf( "Position after trying to read 100 bytes: %ld\n", position ); fclose( stream ); } } |
| Всего записей: 576 | Зарегистр. 17-01-2003 | Отправлено: 10:21 31-05-2017 | Исправлено: landy, 10:22 31-05-2017 |
|