Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by Dhyana

  1. Dhyana

    C++ Can someone explain this c++ program to me?

    #include <iostream> using namespace std; class test{ public: test(int data):mData(data) { std::cout<<"Const"<<std::endl; } ~test() { std::cout<<"Const"<<std::endl; } int get(){ return this->mData; } private: int mData; }; int...
Back
Top Bottom