2011년 4월 12일 화요일

cpp] 예제로 바로 알아보는 c와 c++ - 13

#include <iostream.h>
void subv(int a);
void subp(int *a);
void subr(int &a);
void main(void)
{
 int n = 5;
 subv(n);
 cout << 'n' << n << endl;
 subp(&n);
 cout << 'n' << n << endl;
 subr(n);
 cout << 'n' << n << endl;
}
void subv(int a)
{
 a++;
 cout << a << endl;
}
void subp(int *a)
{
 ++*a;
 cout << a << endl;
}
void subr(int &a)
{
 ++a;
 cout << a << endl;
}


&는 별칭 지청 연산자...
call by value, pointer, reference중에 reference...

댓글 없음:

댓글 쓰기

국정원의 댓글 공작을 지탄합니다.

UPBIT is a South Korean company, and people died of suicide cause of coin investment.

 UPBIT is a South Korean company, and people died of suicide cause of coin. The company helps the people who control the market price manipu...