
C++ class example program


Advertise here
SUBMITTED BY: RavishBhatt

DATE: June 29, 2016, 8:53 a.m.

FORMAT: C++

SIZE: 577 Bytes

 Raw  Download
Tweet
HITS: 5

 Go to comments  Add to favorites  Report

  
#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;
      }