What is the main purpose of c++?
No Answer is Posted For this Question
Be the First to Post Answer
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
What is const pointer and const reference?
How many types of classes are there in c++?
When volatile can be used?
write the programme that convert a interger to biniry number
When copy constructor can be used?
how to create window program in c++.please explain.
How can you force instantiation of a template?
What flag means?
Difference between class and structure.
Why is c++ still used?
Difference between shift left and shift right?