What is the meaning of c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is a manipulative person?
What is a binary file? List the merits and demerits of the binary file usagein C++.
What do you mean by inheritance in c++?
Is c++ an oop?
What is the difference between Char a[ ]=”string” and char *a=”String”
What is a float in c++?
Write a program to calculate the following i want a c++program for this condition 1+4+9+16+….+100 Like this (1^2+2^2) Hint use function pow(a,b)
What is format for defining a structure?
Why can’t you call invariants() as the first line of your constructor?
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
Is it possible for the objects to read and write themselves?
What is buffer and example?