Answers for "c++ class method example"

C++
5

c++ class method example

class Object {
public:
	int var;
	void setVar(int n) {
		var = n;
	}
	int getNum() {
		return var;
	}
};

int main() {
	Object obj;
	obj.setVar(13);
	std::cout << obj.getNum() << std::endl;
	return 0;
}
Posted by: Guest on January-18-2020

Code answers related to "c++ class method example"

Browse Popular Code Answers by Language