#ftell #현재 #파일 #포인터 #위치 #FILE #fseek #include long int ftell(FILE *stream); ftell 함수는 지정한 stream 인수의 파일 포인터의 현재 위치를 반환합니다. 오류가 발생하면 -1을 반환합니다. #define _CRT_SECURE_NO_WARNINGS // Visual Studio #include int main() { FILE* fp; if ((fp = fopen("ftell.txt", "w+")) == NULL) { printf("파일을 생성할 수 없습니다.\n"); return -1; } fprintf(fp, "Tell me about me!"); printf("%d\n", ftell(fp)); fclose(fp); return 0; }