도서관 도서 관리 프로그래밍 #include #include struct book { char name[10]; char title[100]; int page; }typedef book; int main() { book bk[10] = {0}; int index = 0; int select; int del_index; int i; while(1) { printf("\t-------------------------------------------------\n"); printf("\t|\t\t\t\t\t\t|\n\t|입력[0] 삭제[1] 수정[2] 출력[3] 종료[-1]\t|\n"); printf("\t|원하는 동작을 입력해 주세요 : "); scanf("%d", &select); if(select == ..
c언어 연결리스트 노드 삽입 삭제 #include #include #include #define TRUE 1 #define FALSE 0 #define ASC 0 #define DSC 1 typedef struct fruit{ int id; char name[20]; int price; struct fruit *link; }Fruit; int addHead(Fruit **head,int id,char *name,int price); int removeHead(Fruit **head); int removeAll(Fruit **head); void printList(Fruit *head); int getId(Fruit *head,char *name); int getPosition(Fruit *head,int..
C언어 문법 총 정리 식별자 : 변수명, 함수명, 상수명등... ① 영문자,숫자, 밑줄문자(_)의 조합 ② 첫글자는 반드시 밑줄문자 또는 영문자로 시작 ③ 공백문자, 예약어는 사용할수 없다 ex) int printf = 10 (X) int h k d = 20 (X) int 123a = 10; (X) int a123 = 20; (O) int _k = 100; (O) ④ 대.소구별 ex) int A=10; int a=20; 자료형 ①정수형- short int (2byte) -32768 ~ +32767 %d int (4byte) -2147483648 ~ +2147483647 %d unsigned int(4byte) %u ==> 음수가없다 long (4byte) %ld ②실수형- float (4byte) %f ..
1. 비쥬얼 스튜디오 파일을 제공하는 MICROSOFT 공식 사이트 접속 https://visualstudio.microsoft.com/ko/downloads/?rr=https%3A%2F%2Fdocs.microsoft.com%2Fko-kr%2Fvisualstudio%2Finstall%2Finstall-visual-studio%3Fview%3Dvs-2019 visual studio 다운로드 | IDE, Code & Team Foundation Server | Visual Studio Visual Studio Community, Professional 및 Enterprise를 다운로드하세요. 지금 무료로 Visual Studio Code 또는 Team Foundation Server를 체험해 보세요. vis..
#include #include #include #include #define ASC 0 #define DSC 1 const int TRUE = 1; const int FALSE = 0; using std::cout; using std::cin; using std::endl; typedef struct fruit{ int id; char name[20]; int price; struct fruit *link; }Fruit; int addHead(Fruit **head, int id, char *name, int price); int removeHead(Fruit **head); int removeAll(Fruit **head); void printList(Fruit *head); int getId(Fru..
#include using namespace std; struct Account { char accID[20]; //계좌번호 char secID[20]; //비밀번호 char name[20]; //이름 int balance; //잔액 }; int main(void){ Account man = { "123", "0000", "홍길동", 10000 }; cout
#include /* using std::cout; using std::endl; using std::cin; */ #define _CRT_SECURE_NO_WARNINGS using namespace std; const int name_LENGTH = 20; /* ===========swap 함수=============== void swap(int *a, int *b){ int temp; temp = *a; *a = *b; *b = temp; } void swap(char *a, char *b){ int temp; temp = *a; *a = *b; *b = temp; } */ /*=============직육면체 크기공식 함수========== int BoxVolume(int length, int wi..
https://github.com/ssj9398