D
David
what's the differnce between the following two functions:
void func(int &t){
}
void fun(int t){
}
Can I define both of them as member functions of a class?
void func(int &t){
}
void fun(int t){
}
Can I define both of them as member functions of a class?