일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- html5 new tag
- relative path
- 토큰경제
- html youtube
- #bubbleSort
- #C++ 연산자함수오버로딩
- hyperledger transaction
- #다차원포인터
- git flow
- #android activity
- #1차원배열
- #3차원배열
- #C++ has~a
- html id
- #성적관리프로그램
- html plug-in
- #binary
- html video
- #JAVASCRIPT
- border-box
- html code
- html multimedia
- html charset
- #CallByAddress
- 하이퍼레저패브릭
- mac terminal command
- docker example
- #2차원배열
- #자바상속#자바이즈어#is~a
- html object
- Today
- Total
A sentimental robot
파일 입출력 (binary) 본문
#include<stdio.h>
#pragma warning (disable:4996)
typedef struct student
{
char name[10];
int age;
}STU;
void main()
{
//2진(binary)입출력 함수
FILE *fp;
STU stu={"batman",30};
STU buf;
fp=fopen("c.txt","rb"); // b를 붙히면 binary란 뜻을 가진다.
fprintf(fp,"%s %d\n",stu.name,stu.age);
fwrite(&stu,sizeof(STU),1,fp);
fread(&buf,sizeof(STU),1,fp);
fclose(fp);
printf("%s %d\n",buf.name,buf.age); //콘솔창에 batman 30 출력
}
#include<stdio.h>
#include<stdlib.h>
#pragma warning(disable:4996);
struct a
{
char name[10];
int score[4];
float avg;
};
void main()
{
FILE*fp;
struct a aa={"Jombie",1,2,3,6,2.f};
fp=fopen("b.txt","wb");
fwrite(&aa,sizeof(struct a),1,fp);
fclose(fp);
}
#include<stdio.h>
#include<stdlib.h>
#pragma warning(disable:4996);
struct a
{
char name[10];
int score[4];
float avg;
};
void main()
{
FILE*fp;
struct a aa={"Jombie",1,2,3,6,2.f};
struct a bb;
fp=fopen("b.txt","rb");
fread(&bb,sizeof(struct a),1,fp);
fclose(fp);
printf("%s %d %d %d %d %f\n",bb.name,bb.score[0],bb.score[1],bb.score[2],bb.score[3],bb.avg);
}
'C ' 카테고리의 다른 글
Recursive Function making header file (0) | 2018.01.02 |
---|---|
Visual Studio Shortcut (0) | 2018.01.02 |
파일 입출력 (텍스트 파일) (0) | 2018.01.02 |
파일 입출력 (0) | 2018.01.02 |
const int *const p (0) | 2018.01.02 |