Is linux written in c or c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is array in c++ example?
What is null pointer and void pointer?
What is the use of main function in c++?
Is swift faster than c++?
What is "map" in STL?
What are the four main data types?
What is a vector c++?
Is c better than c++?
Are vectors passed by reference c++?
What is the use of this pointer in c++?
List the special characteristics of constructor.
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.