Is there a default parameterized constructor in c++
#include<bits/stdc++.h> using namespace std; class test{ public: int a, b, c; }; int main(){ test obj = {1, 2, 3}; cout << obj.a << ” ” << obj.b << ” ” << obj.c << endl; } In the test class, no parameterized constructor was created, then how can an object of the test class be […]