일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- #3차원배열
- git flow
- relative path
- 하이퍼레저패브릭
- #다차원포인터
- html object
- #android activity
- #bubbleSort
- html code
- #binary
- #성적관리프로그램
- mac terminal command
- #CallByAddress
- html multimedia
- #1차원배열
- html youtube
- hyperledger transaction
- #자바상속#자바이즈어#is~a
- html5 new tag
- html plug-in
- border-box
- html video
- 토큰경제
- html charset
- #C++ 연산자함수오버로딩
- html id
- #2차원배열
- docker example
- #JAVASCRIPT
- #C++ has~a
Archives
- Today
- Total
목록#C++ reference to pointer (1)
A sentimental robot
C++ passing reference to pointer
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 #include #include #include"input.h" #include"operators.h" #include"disp.h" using namespace std; class Calculation{ int *a; int*b; char *c; float *res; public : Calculation(){ a=new int; b=new int; c=new char; res=new float; } void cac(){ input(*a,b,&c); *res=operators(..
C++
2018. 9. 12. 22:38