Call By Ref test
This commit is contained in:
@@ -41,4 +41,11 @@ namespace ax{
|
||||
void ausgebene(T a){
|
||||
std::cout << a << " ist vom Type " << type_name<T>()<< std::endl ;
|
||||
}
|
||||
|
||||
//CallByRefference
|
||||
|
||||
int fn_CtUp (int &a){
|
||||
a = ++a;
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user