#include<iostre am>
using namespace std;
inline int max(int a,int b);
main()
{
cout<<max(10,20 )<<endl;
}
inline int max(int a,int b)
{
return a > b ? a : b ;
}
Is there any command by which we can see the call is replaced by body of function .
using namespace std;
inline int max(int a,int b);
main()
{
cout<<max(10,20 )<<endl;
}
inline int max(int a,int b)
{
return a > b ? a : b ;
}
Is there any command by which we can see the call is replaced by body of function .
Comment