How to print name in c++



#include<iostream.h>

#include<conio.h>

class name

{
    private:
                 char name[10];
    public:
                 void disp()


{
      cout<<"Enter your name:\n";
      cin>>name;
      cout<<"your name is<<name;"
}

};

void main()
{
       
         clrscr();
        name obj;
        obj.disp();
}

0 comments:

Post a Comment