Код: Выделить всё
void function(int a = 0, float b = 3.1);
void function(int a, float b =1.1, int c = 0);
Спасибо!
Подробнее здесь: https://stackoverflow.com/questions/385 ... parameters
Код: Выделить всё
void function(int a = 0, float b = 3.1);
void function(int a, float b =1.1, int c = 0);