Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include<iostream>
  2.  
  3. class abc
  4. {
  5. public:
  6. void fun();
  7. };
  8.  
  9. void abc::fun()
  10. {
  11. int a,b,c;
  12. cout<<"Enter the two no.s: ";
  13. cin>>a>>b;
  14. c=a+b;
  15. cout<<"The Addition Is: "<<c;
  16. }
  17.  
  18. void main()
  19. {
  20. abc obj;
  21. obj.fun();
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement