일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- node.js
- 김양재 목사님
- nodeJS
- 주일설교
- 우리들교회
- 인공지능
- 김양재 목사
- Statistics
- 확률
- 빅데이타
- 데이터 과학
- c++
- 빅 데이터
- 딥러닝
- WebGL
- openCV
- 빅데이터
- Machine Learning
- No SQL
- MongoDB
- Deep learning
- Big Data
- 통계
- data science
- probability
- 몽고디비
- R
- 빅 데이타
- 김양재
- Artificial Intelligence
Archives
- Today
- Total
목록포인터 (1)
Scientific Computing & Data Science
[C/C++] Example / Double Pointer
// // main.cpp // // Created by gchoi on 2014. 5. 20.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include using namespace std; void fill(int **p, int rowSize, int columnSize); void print(int **p, int rowSize, int columnSize); int main(int argc, const char * argv[]) { int** board; int rows; int columns; rows = 5; columns = 7; board = new int* [rows]; for(int row = 0 ; row < r..
Programming/C&C++
2014. 6. 12. 11:45