Vidyalelo
C# Programming · Q218

Classes and Objects in C Sharp

Programming · C# Programming · question 218

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();
Answer
B.
abc();
C.
abc e;
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