class Test {
int x; Test() {
x = 5;
}
};
int main() {
Test *t = new Test;
cout << t>x;
}
Why is it a compiler error?
This might giving you compilation error. Share your code using ide.codingblocks.com so i can help you
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.