呼び出し元の関数でローカル変数の名前と同じ名前の関数を呼び出すにはどうすればよいですか?
シナリオ:
他の関数otherfun(int a、int myfun)から関数myfun(a、b)を呼び出す必要があります。どうすればいいですか?
int myfun(int a , int b)
{
//
//
return 0;
}
int otherfun(int a, int myfun)
{
// Here i need to call the function myfun as .. myfun(a,myfun)
// how can i do this?? Please help me out
}