목록Study (151)
Rylah's Study & Daily Life
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.

#include #include #define MAX 10000 int main(void) { // 파일 입출력 // 파일에 어떤 데이터를 저장 // 파일에 저장된 데이터를 불러오기 // fputs , fgets 쌍 -> 문자열 저장 // fprintf, fscanf 쌍 //char line[MAX]; // char line[10000] ////파일 열기 //FILE* file = fopen("c:\\test1.txt", "wb"); // r : read(읽기) , w : write(쓰기) , a : append(이어쓰기) // t(text) b(바이너리 데이터) //if (file == NULL) { //printf("파일 열기 실패\n"); //return 1; //} //fputs("fputs를 이..

#include struct GameInfo { char* name; int year; int price; char* company; struct GameInfo* friendGame; // 연관 게임 회사 }; typedef struct GameInformation { char* name; int year; int price; char* company; struct GameInfo* friendGame; // 연관 게임 회사 }GAME_INFO; int main(void) { // [게임 출시] // 이름 : 나도게임 // 발매년도 : 2017 년 // 가격 : 50원 // 제작사 : 나도회사 char* name = "나도게임"; int year = 2017; int price = 50; char* c..