일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- nodeJS
- 김양재 목사님
- node.js
- 데이터 과학
- 우리들교회
- MongoDB
- WebGL
- Big Data
- Artificial Intelligence
- Deep learning
- 확률
- c++
- 주일설교
- 빅 데이타
- 인공지능
- 빅데이터
- 통계
- Machine Learning
- No SQL
- 김양재
- 빅데이타
- probability
- 몽고디비
- data science
- 김양재 목사
- Statistics
- R
- 딥러닝
- openCV
- 빅 데이터
Archives
- Today
- Total
Scientific Computing & Data Science
[C/C++] Example / swap: call by reference 본문
// Test-002.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <iomanip>
using namespace std;
// fucntions prototype
int factorial( int x);
void swap( int & x, int & y);
int _tmain( int argc , _TCHAR * argv [])
{
int a = 4;
int b = 3;
cout << a << " , " << b << endl;
swap(a ,b);
cout << a << " , " << b << endl;
int c = 25;
cout << hex << c << endl;
return 0 ;
}
int factorial( int x ) {
int fact = 1;
while ( x > 1) {
fact *= x;
x--;
}
return fact ;
}
void swap( int & x, int & y) {
int 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 pointer (0) | 2014.06.12 |
Comments