Write a C++ Program for concept of object.


SUBMITTED BY: Nrupeshsinh

DATE: July 4, 2016, 1:53 p.m.

FORMAT: Text only

SIZE: 297 Bytes

HITS: 332

  1. # include<iostream.h>
  2. # include<conio.h>
  3. class Myclass // this is class.
  4. {
  5. public:
  6. void show()
  7. {
  8. cout<<"C++ is Better than c language.";
  9. }
  10. };
  11. void main()
  12. {
  13. clrscr();
  14. Myclass obj; //object is created here.
  15. obj.show(); //object declaration.
  16. getch();
  17. }

comments powered by Disqus