Explain about templates of C++.
No Answer is Posted For this Question
Be the First to Post Answer
What happens when you make call 'delete this;'?
Have you used MSVC? What do you think of it?
Which software is used to run c++ program?
What is the difference between cin.read() and cin.getline()?
What is the difference between operator new and the new operator?
If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];
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
Will a catch statement catch a derived exception if it is looking for the base class?
what are Access specifiers in C++ class? What are the types?
What is ios in c++?
What things would you remember while making an interface?
What is functions syntax in c++?