×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

C# program to define various types of constants

C# constant example: Here, we are writing a C# program – to define various type of constant and printing their values. By IncludeHelp Last updated : April 15, 2023

C# Constants Example

Like other programming languages, In C#, we can also defining various types of constants and printing their values.

Defining Constants

A constant can be defined using const keyword, once constant is defined, it’s value can never be changed.

Syntax

    const data_type constant_name = value;
    const float PI = 3.14f;

Example

    Input:
    const int a = 10;   //integer constant 
    
    Console.WriteLine("a: {0}", a);

    Output:
    a: 10

C# code to define various types of constants

// C# program to define various types of constants 

using System;
using System.IO;
using System.Text;

namespace IncludeHelp {
  class Test {
    // Main Method 
    static void Main(string[] args) {
      const int a = 10; //integer constant 
      const float b = 20.23f; //float constant
      const double c = 10.23; //double constant
      const char d = 'Y'; //character constant 
      const string e = "Hello"; //string constant

      //printing values
      Console.WriteLine("a: {0}", a);
      Console.WriteLine("b: {0}", b);
      Console.WriteLine("c: {0}", c);
      Console.WriteLine("d: {0}", d);
      Console.WriteLine("e: {0}", e);

      //hit ENTER to exit the program
      Console.ReadLine();
    }
  }
}

Output

a: 10
b: 20.23
c: 10.23
d: Y
e: Hello

C# Basic Programs »


Related Programs

Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.