using namespace std;
class value
{
public:
void show(char='h',int=5); //default arguments
};
void value::show(char y,int x)
{
int i;
for(i=1;i<=x;i++)
cout<
}
int main()
{
value a,b,c;
a.show();
//no arguments
b.show(87,2);
//one arguments
c.show('m',3);
//two arguments
}
No comments:
Post a Comment
SAY HELLO!!