How to use default arguments in function with C++

1 Answer

0 votes
#include <iostream> 
 
void f(int i = 84, double d = 3.14) {
    std::cout << i << " " << d << "\n";
}


int main() {
    f();
    
    f(23);
    
    f(15, 1.16);    
} 
 
     
     
/*
run:
     
84 3.14
23 3.14
15 1.16
    
*/

 



answered Apr 5, 2024 by avibootz
...