What is c++ w3school?
No Answer is Posted For this Question
Be the First to Post Answer
Is c++ primer good for beginners?
What is different in C++, compare with unix?
let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.
Explain virtual destructor?
Is c++ built on c?
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
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
How a new operator differs from the operator new?
What are the different types of polymorphism?
Differentiate between a template class and class template in c++?
write a program that takes two numbers from user that prints the smallest number
Explain what you mean by a pointer.