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;
}
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: Option A

Join The Discussion