#include using namespace std; int MyFun(int a); int main() { MyFun(0); return 0; } int MyFun(int a) { cout << "In my function " << endl; return 0; }