Javatpoint Logo

what does this line means and why we use this ???

By: mahesh*** On: Sun Nov 19 17:47:57 IST 2017     Question Reputation0 Answer Reputation0 Quiz Belt Series Points0  0Blank User
class A{
public:
int a;
A : a(0) {} // what does this line means in c++
};
Up0Down