파일 읽기
-
[메모리] 파일 읽기Stage/Computer Science 2021. 6. 1. 11:33
학습 목표 파일을 읽고 JPEG 파일인지를 검사하는 프로그램을 작성할 수 있다. 1. 파일 읽기 파일의 내용을 읽어서 파일 형식이 JPEG 이미지인지 검사하는 프로그램을 만들어보자. #include int main(int argc, char *argv[]) { if (argc != 2) { return 1; } FILE *file = fopen(argv[1], "r"); if (file == NULL) { return 1; } unsigned char bytes[3]; fread(bytes, 3, 1, file); if (bytes[0] == 0xff && bytes[1] == 0xd8 && bytes[2] == 0xff) { printf("Maybe\n"); } else { printf("No\n");..