fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void p(int a){
  5. cout<<__FUNCTION__<<"\n";
  6. }
  7.  
  8. int main() {
  9. p(0?2:3);
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5508KB
stdin
Standard input is empty
stdout
p