First C++ Program


SUBMITTED BY: Nrupeshsinh

DATE: June 21, 2016, 1:49 p.m.

FORMAT: Text only

SIZE: 312 Bytes

HITS: 546

  1. //This Program prints Hello.
  2. # include<iostream.h>
  3. # include<conio.h>
  4. class myclass
  5. {
  6. public:
  7. void show()
  8. {
  9. cout<<"Hello";
  10. }
  11. };
  12. void main()
  13. {
  14. clrscr();
  15. myclass obj;
  16. obj.show();
  17. getch();
  18. }

comments powered by Disqus