Question: Question 3 3 Analyze the following code: class Greetings public: int x ; Greetings ( ) ( cout Hello; } } ; int main (

Question 33
Analyze the following code:
class Greetings
public:
int x;
Greetings ()(
cout "Hello";
}
};
int main()(
Greetings greet;
cout greet.x;
}
The program has a compile error because x has not been initialized.
The program has a compile error because greet is not initialized.
The program has a compile error because Greetings does not have a default constructor.
The program runs fine, but greet. x is unpredictable.
 Question 33 Analyze the following code: class Greetings public: int x;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!