Csharp Variables
Csharp Variables
A variable is nothing but a name given to a storage area that our programs can manipulate. Each
variable in C# has a specific type, which determines the size and layout of the variable's memory
the range of values that can be stored within that memory and the set of operations that can be
applied to the variable.
Type Example
Integral types sbyte, byte, short, ushort, int, uint, long, ulong, and char
C# also allows defining other value types of variable such as enum and reference types of
variables such as class, which we will cover in subsequent chapters.
Defining Variables
Syntax for variable definition in C# is:
<data_type> <variable_list>;
Here, data_type must be a valid C# data type including char, int, float, double, or any user-defined
data type, and variable_list may consist of one or more identifier names separated by commas.
int i, j, k;
char c, ch;
float f, salary;
double d;
int i = 100;
Initializing Variables
Variables are initialized assignedavalue with an equal sign followed by a constant expression. The
general form of initialization is:
variable_name = value;
Variables can be initialized in their declaration. The initializer consists of an equal sign followed by
a constant expression as:
using System;
namespace VariableDefinition
{
class Program
{
static void Main(string[] args)
{
short a;
int b ;
double c;
/* actual initialization */
a = 10;
b = 20;
c = a + b;
Console.WriteLine("a = {0}, b = {1}, c = {2}", a, b, c);
Console.ReadLine();
}
}
}
When the above code is compiled and executed, it produces the following result:
a = 10, b = 20, c = 30
For example,
int num;
num = Convert.ToInt32(Console.ReadLine());
The function Convert.ToInt32 converts the data entered by the user to int data type, because
Console.ReadLine accepts the data in string format.
lvalue: An expression that is an lvalue may appear as either the left-hand or right-hand side
of an assignment.
rvalue: An expression that is an rvalue may appear on the right- but not left-hand side of an
assignment.
Variables are lvalues and hence they may appear on the left-hand side of an assignment. Numeric
literals are rvalues and hence they may not be assigned and can not appear on the left-hand side.
Following is a valid C# statement:
int g = 20;
But following is not a valid statement and would generate compile-time error:
10 = 20;
Loading [MathJax]/jax/output/HTML-CSS/jax.js