#include<iostream.h>
class man
{
public:
void money()
{
for(int i=0;i<5;i++)
cout<<i;
}
};
void main()
{
man m;
m.money();
}
When this is compiled a warning is shown as-"Functions containing for are not expanded inline". Why is it so?