int foo(int ii = 5) { return ii + 5; } int main(int argc, char* argv[]) { foo(3); foo(); return 0; }