반응형

c언어 파일 입출력 - 바이트 읽기 출력

 

 

그림 파일( jpg ) 바이트 읽고 출력하기

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Read bytes from a file */
#include <stdio.h>
#include <stdbool.h>
 
int main() {
    // FILE *in = fopen("in.mp3", "rb");
    FILE *in = fopen("in.jpg""rb");
    unsigned char b = fgetc(in);
    while (!feof(in)) {
        printf("%c", b);
        b = fgetc(in);
    }
    fclose(in);
}

 

 

 

 

 

반응형