일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- R
- 주일설교
- 김양재 목사님
- node.js
- 우리들교회
- Artificial Intelligence
- c++
- No SQL
- nodeJS
- 빅 데이타
- WebGL
- 빅데이터
- 김양재 목사
- 빅데이타
- 빅 데이터
- 데이터 과학
- 몽고디비
- 확률
- Deep learning
- data science
- MongoDB
- probability
- Big Data
- Machine Learning
- 통계
- openCV
- 인공지능
- 김양재
- 딥러닝
- Statistics
Archives
- Today
- Total
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 <iostream>
#include <iomanip>
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 < rows ; row++) {
board[row] = new int[columns];
}
fill(board, rows, columns);
print(board, rows, columns);
return 0;
}
void fill(int **p, int rowSize, int columnSize) {
for (int row = 0; row < rowSize; row++)
for (int col = 0; col < columnSize; col++)
p[row][col] = row*col;
}
void print(int **p, int rowSize, int columnSize) {
for (int row = 0; row < rowSize; row++)
for (int col = 0; col < columnSize; col++)
cout << "p[" << row << "]" << "[" << col << "] = " << p[row][col] << endl;
}
'Programming > C&C++' 카테고리의 다른 글
[C/C++] Example / Copy Constructor (0) | 2014.06.12 |
---|---|
[C/C++] Example / Assignment Operator (0) | 2014.06.12 |
[C/C++] Example / clockType (0) | 2014.06.12 |
[C/C++] Example / String Append (0) | 2014.06.12 |
[C/C++] Example / Vector Class (0) | 2014.06.12 |
Comments