+ 5
About default arguments
How can just the last argument be default when the function has 3 arguments??
4 Answers
+ 7
@Toky R.
Integer c is default argument.
+ 4
example :
void myFunction(int a, int b, int c = 0)
+ 3
No! I mean all have default values but i just wanna return the last one.
+ 3
I don't understand...