Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Structure with use of static fields inside a struct

C# Sharp STRUCTURE: Exercise-2 with Solution

Write a program in C# Sharp to declare a simple structure and use of static fields inside a struct.

Sample Solution:-

C# Sharp Code:

using System;

struct w3rStruct
{
public static int x = 15;
public static int y = 25;
}
class strucExer2
    {
    public static void Main()
        {
        Console.Write("\n\nStructure with the use of static fields inside a structure :\n");
        Console.Write("-------------------------------------------------------------\n"); 	
        int sum = w3rStruct.x + w3rStruct.y;
        Console.WriteLine("The sum of x and y is {0}\n",sum);
        }
    }

Sample Output:

Structure with the use of static fields inside a structure :                                                     
-------------------------------------------------------------                                                 
The sum of x and y is 40

Flowchart:

Flowchart: Structure with use of static fields inside a struct.

C# Sharp Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C# Sharp to declare a simple structure.
Next: Write a program in C# Sharp to create a nested struct to store two data for an employee in an array.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.