fopen 파일추가로 열때.. 스트림 파일포지션위치가....
fopen 파일추가(a+ 모드) 로 열때.. 스트림 파일포지션위치가....
맨마지막으로 간다고 알고 있는데..
갑짜기 컴파일러를 바꿨더니.. 안가는군요...
man page 를보니.. 바뀌어버렸군요...
gcc version 2.96 20000731
--------------------------------------------
a+ Open for reading and writing. The file is created if it does not exist.
The stream is positioned at the end of the file.
gcc version 3.4.3 20050227
-----------------------------------------------------------------------------------------------
a+ Open for reading and appending (writing at end of file). The file is created if it
does not exist. The initial file position for reading is at the beginning of the
file, but output is always appended to the end of the file.
아이게 언제부터바뀐거야.. 젠장..
그건
그건 implementation-defined입니다.
컴파일러에 따라 이럴 수도 있고 저럴 수도 있습니다.
이식성을 원하시면 좀 더 신경쓰세요.
댓글 달기