1. What are smart pointers in C++ and how do they help to manage with memorary management? Also list what are the different smart pointers available. 2. When do you prefer using array over vector in C++?
Forum By W3make Latest Questions
What is the Pros and Cons while learning DSA in C++ ?
What is the difference between abstraction and encapsulation in object-oriented programming?
int main(){ int a,b,c; a=10; b=20; c=b; printf(“%d%d%d%d”,*&a,*&*&b,*&c,a); return 0; } what is output of this code???
Normal function Q & A in C++
It is about C++ Language