Advertisement
TechOPGOHIL

Untitled

Dec 3rd, 2023
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. // Write A program to perform inline function program with example
  2.  
  3. #include<iostream.h>
  4. #include<conio.h>
  5. class sum
  6. {
  7.     int a,b;
  8.     public:
  9.     void getdata()
  10.     {
  11.         cout<<"Enter 1 Value\n";
  12.         cin>>a;
  13.         cout<<"Enter 2 Value\n";
  14.         cin>>b;
  15.         cout<<"Sum of This Number Are :"<<display(a,b);
  16.     }
  17.     inline int display(int a,int b)
  18.     {
  19.         return a+b;
  20.     }
  21. };
  22. void main()
  23. {
  24.     clrscr();
  25.     sum obj;
  26.     obj.getdata();
  27.     getch();
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement