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