티스토리 뷰
반응형
data.txt는 소스폴더 안에
kim 87
lee 93
park 75
choi 83
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 | // ConsoleApplication7.cpp: 콘솔 응용 프로그램의 진입점을 정의합니다. // #include "stdafx.h" int main(){ int score = 0; char name[10] = { " " }; FILE *fpin, *fpout; fpin = fopen("data.txt", "r+"); fpout = fopen("out.txt", "w+"); while (!feof(fpin)) { fscanf(fpin, "%s %d", name, &score); printf("%s %d\n", name, score); fprintf(fpout, "%s %d\n", name, score); } return 0; } | cs |
실행해도 솔루션 탐색기에 안보이시면 VS껐다가 켜보세요
'C, C++' 카테고리의 다른 글
C++ 2차원 벡터(Vector ) 행(row) 삭제 (0) | 2018.06.07 |
---|---|
C언어 10만개의 랜덤한 정수 중복없이 배열에 삽입하기 (0) | 2018.05.02 |
C언어 학생 이름, 학번, 성적을 구조체로 선언해 입력받아 파일에 저장 (0) | 2018.04.12 |
비주얼 스튜디오 scanf_s 에러(C4996) 해결 방법 (0) | 2018.04.10 |
C언어 두개의 문자열을 입력받아, 문자열이 같은지 다른지를 판별 (0) | 2018.04.05 |
댓글
티스토리 방명록
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
Blog is powered by
Tistory / Designed by
Tistory
Contact: j0n9m1n1@gmail.com
Contact: j0n9m1n1@gmail.com