Loading practice questions
What will be the output of the following C++ code
#include
using namespace std;
class A{
public:
int a;
};
int main(int argc, char const *argv[])
{
A a1 = {10};
A a2 = a cout<<a1.a<<a2.a;
return}
Correct Answer: D — 1010
Explanation:
1010