fork(1) download
  1. #include <iostream>
  2.  
  3. int soma(int n1, int n2 = 5) { return n1 + n2; }
  4.  
  5. int main() { std::cout << soma(5) << std::endl; }
  6.  
  7. //https://pt.stackoverflow.com/q/514913/101
Success #stdin #stdout 0s 5500KB
stdin
Standard input is empty
stdout
10