Can c++ do everything c can?
No Answer is Posted For this Question
Be the First to Post Answer
What is an Iterator class?
How much is c++ certification?
What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what is the output for arr[2][1][0]?
6 Answers HCL, Integra, IPMC, ORG,
What are the comments in c++?
What is c++ in english?
Can I run c program in turbo c++?
What is the use of ‘using’ declaration?
How is c++ different from java?
what is upcasting in C++?
What is a storage class in C++
When a function is made inline. Write the situation where inline functions may not work.
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