 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | What is new operator in C++? Give an example. | 
| Answer» The new operator in C++ is used for dynamic storage allocation. This operator can be used to create an object of any type. General syntax of the new operator in C++: The general syntax of a new operator in C++ is as follows: For example: int *a=new int; | |