Advertisement
pranto_95

Lab 2

Sep 15th, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. class pranto{
  4. public:
  5. void display(){
  6. cout<<"Maksud"<<endl;
  7. }
  8. };
  9. int main(){
  10. pranto a;
  11. a.display();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement