Mega Code Archive

 
Categories / C++ / Class
 

Illustrates the use of a public variable

#include <iostream> using namespace std; class myclass { public:   int i, j, k; // accessible to entire program }; int main() {   myclass a, b;   a.i = 100;    a.j = 4;   a.k = a.i * a.j;   b.k = 12;    cout << a.k << " " << b.k;   return 0; }