2011년 4월 12일 화요일

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

#include <iostream.h>
int sub(int &k);
int * subp(int *p);
int & subr(int &k);
void main()
{
 int n;
 //sub(n) == 100;
 //*subp(&n) = 100;
 cout << *subp(&n) << endl;
 subr(n) = 300;
 cout << n << endl;
}
int sub(int &k)
{
 k= 5;
 cout << k << endl;
 return k;
}
int * subp(int *p)
{
 *p = 10;
 cout << *p << endl;
 return p;
}
int & subr(int &k)
{
 k=200;
 cout << k << endl;
 return k;
}
레퍼런스 반환형 함수 int & subr...

댓글 없음:

댓글 쓰기

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

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...