Wednesday 4 February 2015

C++ class example program

C++ class example program

#include<iostream>
 
using namespace std;
 
class programming
{
   private:
      int variable;
 
   public:
 
      void input_value()
      {
         cout << "In function input_value, Enter an integer\n";
         cin >> variable;
      }
 
      void output_value()
      {
         cout << "Variable entered is ";
         cout << variable << "\n";
      }
};
 
main()
{
   programming object;
 
   object.input_value();
   object.output_value();
 
   //object.variable;  Will produce an error because variable is private
 
   return 0;
}

No comments:

Post a Comment