Which command properly allocates memory
a) char *a=new char[20];
b) char a=new char[20];
c) char a=new char(20.0);
How do you test your code?
Is sorted c++?
What is purpose of new operator?
Difference between inline functions and macros?
What are move semantics?
Write a C++ Program to check whether a number is prime number or not?
What is the function of the keyword ‘volatile’ in C++?
Explain virtual destructor?
Can we run c program in turbo c++?
Is std :: string immutable?
What is a set in c++?
What are Binay tress and B trees? Diff between them?