What is the oldest programming language?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
How would you use the functions sin(), pow(), sqrt()?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
If I is an integer variable, which is faster ++i or i++?
When does the c++ compiler create temporary variables?
What is abstraction in c++?
What is the Difference between "vector" and "array"?
15 Answers Covansys, Gambit, TCS, Wipro,
Is there a new/delete equivalent of realloc?
How is static data member similar to a global variable?
What are the techniques you use for debugging?
What is this pointer in c++?
Why is c++ still used?