fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void f()
  6. {
  7. cout << __func__ << endl;
  8. }
  9.  
  10. int main() {
  11.  
  12. cout << __func__ << endl;
  13.  
  14. f();
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
main
f