| 1. | Which of the following is the correct way to define a variable of the type struct Emp declared below? struct Emp 1 Emp e(); e = new Emp(); 2 Emp e = new Emp; 3 Emp e; e = new Emp; 4 Emp e = new Emp(); 5 Emp e;
|
|||||||
Answer: Option C Explanation: No answer description available for this question. Let us discuss.
|
