Q:

C# program to demonstrate the array of structures

0

C# program to demonstrate the array of structures

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

The source code to demonstrate the array of the structure is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//Program to demonstrate the array of structure in C#

using System;

public struct Student
{
    public int Id;
    public string Name;
    public int Fees;

    public void SetStudent(int id, string name, int fees)
    {
        Id = id;
        Name = name;
        Fees = fees;
    }

    public void PrintStudent()
    {
        Console.WriteLine("Student details:");
        Console.WriteLine("\tID     : " + Id);
        Console.WriteLine("\tName   : " + Name);
        Console.WriteLine("\tFees   : " + Fees);
        Console.WriteLine("\n");
    }
}

class Program
{
    static void Main(string[] args)
    {
        Student[] S = { new Student(), new Student() };
        
        S[0].SetStudent(101, "Rohit", 5000);
        S[1].SetStudent(102, "Virat", 8000);

        S[0].PrintStudent();
        S[1].PrintStudent();
    }
}

Output:

Student details:
        ID     : 101
        Name   : Rohit
        Fees   : 5000


Student details:
        ID     : 102
        Name   : Virat
        Fees   : 8000

Press any key to continue . . .

Explanation:

In the above program, we created a structure Student that contains data members IdName, and Fees. The Student structure contains two methods SetStudent() and PrintStudent().

The SetStudent() method is used to set the student information, and PrintStudent() method is used to print the student information on the console screen.

Now look to the Program class. The Program class contains the Main() method, The Main() method is the entry point for the program. Here, we created the array of structure Student, and then called the SetStudent() and PrintStudent() method for array elements.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | Class, Object, Methods

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to demonstrate the static constructor i... >>
<< C# program to demonstrate the structure...