Define New Operator. Explain it.
Answers
Answered by
1
Answer:
Mark as brainliest please
Step-by-step explanation:
The new operator is an operator which denotes a request for memory allocation on the Heap. If sufficient memory is available, new operator initializes the memory and returns the address of the newly allocated and initialized memory to the pointer variabl
Answered by
10
Explanation :
The class is a representation of data and functions. When an object of a class is created, it contains data member and member methods described within the class. To create an object of a class the keyword 'new' is used.
Example ➡️ Result_Num nk = new Result_Num( );
Similar questions