#include <iostream.h>
class Inline Demo
{
public:
int square (int s);
};
inline int Inline Demo::Square (int s)
{
return s* s;
}
void main ()
{
Inline Demo S;
cout <<" square of No is: << s. Square(10);
}
Answers
Answered by
1
Answer:
sorry please translate language
Similar questions