Q218
The correct way to define a variable of type struct abc in the following C# code? struct abc public string name; protected internal int age; private Single sal;
A.
abc e = new abc();
AnswerB.
abc();
C.
abc e;
e = new abc;
e = new abc;
D.
abc e = new abc;
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board