일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GitLab Mirroring
- React Native
- 음료같은녹즙
- Emmet
- 티스토리 초대장
- 유니옥션
- eslint-import-resolver-typescript
- GitLab미러링
- settings sync
- code 설치
- 프리티어
- GitHub 미러링
- currentTimeMillis
- 티스토리 초대장/ 티스토리초대
- 실행시간 측정
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- GitHub Mirroring
- gitlab 연동
- code .
- Path Alias
- webstorm
- 초대장
- visual studio code cli
- 니돈내먹
- '티스토리 초대장/ 티스토리초대'
- visual studio code
- 네이버 클라우드 플랫폼
- react native #gradle
- 티스토리초대
- code 세팅
- Today
- Total
목록프로그래밍/C & C++ (4)
방치하기
#include #include #include typedef struct listNode *node_p; struct listNode { char name[5]; node_p link; }; void printList(node_p L) { node_p p; printf("\n("); p = L; while (p != NULL) { printf("%s", p->name); p = p->link; if (p != NULL) printf(", "); } printf(")\n"); } node_p addLastNode(node_p L, char *x) { node_p newNode, p; newNode = (node_p)malloc(sizeof(struct listNode)); strcpy(newNode->n..
#include #include using std::cout; using std::endl; class Person { public: int age; Person() { age=1; } Person(int i ) { age=i; } ~Person() { } }; class Junho:public Person { private: char * name; int idNum; public: void setDet(int a,int b); char * getName(void); Junho() { this->name="2211"; idNum=0; } Junho(char * i):Person(23) { name=i; idNum=1; } Junho(char * i,int j) { name=i; idNum=j; } ~Ju..
#include using std::cout; using std::endl; class junho { private: char name; int idNum; public: void setDet(int a,int b); int getName(void); junho() { name=1; idNum=0; } junho(int i) { name=i; idNum=1; } junho(int i,int j) { name=i; idNum=j; } }; void junho::setDet(int a,int b) { name=a; idNum=b; } int junho::getName(void) { return name; } void main() { junho jh;// 디폴트 생성자는 () 이게 없음 ; cout