如何调用与调用函数中的局部变量名称相同的函数
设想:
我需要从其他函数 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
}