일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- c++
- data science
- 딥러닝
- 몽고디비
- 통계
- nodeJS
- 우리들교회
- node.js
- 데이터 과학
- 빅데이터
- Machine Learning
- 빅데이타
- Statistics
- 김양재 목사
- 주일설교
- Artificial Intelligence
- 인공지능
- MongoDB
- WebGL
- Deep learning
- Big Data
- 김양재
- openCV
- 빅 데이터
- No SQL
- 빅 데이타
- 김양재 목사님
- probability
Archives
- Today
- Total
Scientific Computing & Data Science
[C/C++] Example / swap: call by pointer 본문
//
// main.cpp
// Test-001
//
// Created by gchoi on 2014. 4. 30..
// Copyright (c) 2014년 gchoi. All rights reserved.
//
#include <iostream>
#include <string>
using namespace std;
// fucntions prototype
void swap( int* x , int * y);
int main( int argc , const char * argv [])
{
int a = 4;
int b = 3;
int * pa;
int * pb;
pa = &a ;
pb = &b ;
cout << "a: " << a << " , " << "b: " << b << endl;
swap(pa , pb );
cout << "a: " << a << " , " << "b: " << b << endl;
return 0 ;
}
void swap(int* x, int* y) {
int tmp ;
tmp = *x ;
*x = * y;
*y = tmp ;
}
'Programming > C&C++' 카테고리의 다른 글
[C/C++] Example / Class (0) | 2014.06.12 |
---|---|
[C/C++] Example / Pointer of Structure (0) | 2014.06.12 |
[C/C++] Example / Structure (0) | 2014.06.12 |
[C/C++] Example / Dynamic Array (0) | 2014.06.12 |
[C/C++] Example / swap: call by reference (0) | 2014.06.12 |
Comments