what is C++ objects?
Is it possible to provide special behavior for one instance of a template but not for other instances?
What is ostream in c++?
What is the difference between = and == in C?
20 Answers Christ University, Intel,
What is the purpose of the "delete" operator?
How should runtime errors be handled in c++?
Difference between a homogeneous and a heterogeneous container
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
If I is an integer variable, which is faster ++i or i++?
How to detect memory leaks in c++
write a program to add two numbers without using an arithmetic operator.
Is it possible to have a recursive inline function 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)