During execution, the only error is "Unexpected unqualified-id before { token. (3rd line}. Pls. do help to fix the error. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

During execution, the only error is "Unexpected unqualified-id before { token. (3rd line}. Pls. do help to fix the error.

#include <iostream> class ABC; { private:int data; public:void getdet(); { cout<<"Enter Number:"; cin>>data; cout<<"The number entered is:"<<data; } }; void main() { ABC obj; obj.getdet(); }

11th Mar 2018, 5:38 AM
Kshitij R. Soni
Kshitij R. Soni - avatar
1 Answer
+ 4
#include <iostream> using namespace std; // <- this wasn't here class ABC // there was a semicolon here { private: int data; public: void getdet()// there was a semicolon here { cout<<"Enter Number:"; cin>>data; cout<<"The number entered is:"<<data; } }; int main() // this was void main() { ABC obj; obj.getdet(); } Hth, cmiiw
11th Mar 2018, 5:58 AM
Ipang