[파일 저장하기] pFile = fopen( "Critical.mfb", "wt" ); fprintf( pFile, "%d ", m_nState ); fclose( pFile );
====================================================================================
File* m_pFile = fopen( "Critical.mfb", "wt" );
File* m_pFile = fopen( "Critical.mfb", "wt" );
fprintf( m_pFile, "%d ", m_nState );
fclose( m_pFile );
// 파일 저장 하기
// fprintf()로 저장할 데이터 넣는다.
- 파일 저장하기. fopen("대상", "wt"), fprintf(), fclose() 핵심이다.
- 파일 저장하기. fopen("대상", "wt"), fprintf(), fclose() 핵심이다.
'[ Programing ] > C++' 카테고리의 다른 글
메모리 침범에 대해... (0) | 2009.12.30 |
---|---|
[ 기초 ] 조건 없이 바로 최적 조건값 리턴 (0) | 2009.12.24 |
[ 기초 ] 파일 불러오기 fopen(); fscanf(); feof() fclose(); (0) | 2009.12.24 |
[ 기초 ] 전 처리기 활용 #ifdef, #ifndef (0) | 2009.12.24 |
[ 기초 ] 매크로 설정 #define (0) | 2009.12.23 |