write a corrected statement in c++ so that the statement
will work properly. x = y = z + 3a;
No Answer is Posted For this Question
Be the First to Post Answer
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Differences between private, protected and public and give examples.
What are the data types in c++?
Describe Trees using C++ with an example.
If a base class is an adt, and it has three pure virtual functions, how many of these functions must be overridden in its derived classes?
Explain polymorphism?
In inline " expression passed as argument are evalauated once " while in macro "in some cases expression passed as argument are evaluated more than once " --> i am not getting it plz help to make me understand....
0 Answers College School Exams Tests, CS,
Explain pass by value and pass by reference.
Generally variables are stored in heap memory. When he variables are created in stack?
Explain selection sorting?
What is the use of data hiding?
What is a pointer with example?