The correct way to define a variable of type struct abc among the following is? struct abc { public string name; protected internal int age; private Single sal; } A. abc e = new abc(); B. abc(); C. abc e; e = new abc; D. abc e = new abc; Answer Workspace Report Discuss Answer with explanation Answer: Option A Explanation abc e = new abc(); Workspace
Discuss about the question