C# Variables and Constants

C# Variables

A variable is an identifierr that denotes a memory location to store a data value and each variable has a type that determines what value can be stored in the variable.

A variable may take the different values at different times during execution of the program.

Variable name should be declared before it is used in the program.

Variable name can be selected by programmer in a meaningful way.

mean is one of the variable in your program which represent the mean value.

Few variable names are,

length
width
height etc..

Variable name may consistes of alphabets, digits and underscore with subject to following conditions,

Must not begin with a digit

Upper case and lower case are distinct

Should not be C# keyword

Space is not allowed

Any number of characters (Any length)

C# Constants

The variable whose value do not change during the execution of a program.

Sample C# program for variable declaration, initialization and constants

This C# program is used to explain how to declare and initialize the variables and also using contants.

using System; // System is a namespace

public class VariableTest
{
    // Main method which starts the program execution.
    public static void Main()
    {
        // delare variable
        int num;
        // define variables
        int a = 10, b = 30, c = 15;
        num = a * b * c;
        const string result = "Muliplication of a, b and c is: ";
        Console.WriteLine(result + num);
        Console.ReadKey();
    }
}

Output:

D:\C#_Programs>csc VariableTest.cs
D:\C#_Programs>VariableTest
Muliplication of a, b and c is: 4500

If we change the C# program to update the constant variable as below, you will get the compilation error.

We cannot update the constant variable value during execution of a program and only initialized during variable declaration using const keyword.

using System; // System is a namespace

public class VariableTest
{
    // Main method which starts the program execution.
    public static void Main()
    {
        // delare variable
        int num;
        // define variables
        int a = 10, b = 30, c = 15;
        num = a * b * c;
        const string result = "Muliplication of a, b and c is: ";
        result = "Product of a, b and c is: ";
        Console.WriteLine(result + num);
        Console.ReadKey();
    }
}

Compiler error:

Severity	Code	Description	Project	File	Line	Suppression State
Error	CS0131	The left-hand side of an assignment must be a variable, property or indexer	ConsoleApp2	D:\C#_Programs\VariableTest.cs	18	Active

C# Program Examples

C# Program to find Square Root of a Number

C# Program to Print Multiplication Table

C# Program to Calculate Median

C# Program to Calculate Standard Deviation

C# Program to Find Odd Number Series

C# Program to Find Even Number Series

C# Program to Find Sum of Number

C# Program to Find Number of Even and Odd Numbers in Array

C# Program to Find Largest of three values

C# Program to Find grade for each students

C Program To Implement Linked List and Operations

C Program To Implement Sorted Linked List and Operations

C Program to Reverse the Linked List

C Program to Stack and Operations using Linked List

C Program to Queue and Operations using Linked List

C Program to calculate multiplication of two numbers using pointers

C Program For Fahrenheit To Celsius Conversion

C Program To Calculate Average

C Program For Quadratic Equations

C Program To Check Character Type

C Program To Find Largest Of Three Values

C Program To Find Max Value In Array

C Program To Find Min Value In Array

C Program For Frequency Counting

C Program To Read A Line Of Text

C Program To Find ASCII Value For Any Character

C Program To Find A Character Is Number, Alphabet, Operator, or Special Character

C Program To Find Reverse Case For Any Alphhabet using ctype functions

C Program To Find Number Of Vowels In Input String

C Program Pointers Example Code

C Program To Find Leap Year Or Not

C Program To Swap Two Integers Using Call By Reference

C Program To Swap Two Integers Without Using Third Variable

C Program To List Prime Numbers Upto Limit

C Program To List Composite Numbers Upto Limit

C Program To Calculate Compound Interest

C Program To Calculate Depreciation Amount After of Before Few Years

C Program To Calculate Profit Percentage

C Program To Calculate Loss Percentage

C Program To Find String Is Polindrome Or Not

C Program To Find Factorial of a Number

C Program To Check Number is a Polindrome or Not

C Program To Generate Random Integers

C Program To Generate Random Float Numbers

C Program to find Area of a Rectangle

C Program to find Perimeter of a Rectangle

C Program to find Area of a Square

C Program to find Area of a Triangle

C Program to find Area of a Parallelogram

C Program to find Area of a Rhombus

C Program to find Area of a Trapezium

C Program to find Area of a Circle and Semi-circle

C Program to find Circumference of a Circle and Semi-circle

C Program to find length of an arc

C Program to find Area of a Sector

Privacy Policy  |  Copyrightcopyright symbol2020 - All Rights Reserved.  |  Contact us   |  Report website issues in Github   |  Facebook page   |  Google+ page

Email Facebook Google LinkedIn Twitter
^