Integer
using System;
public class TestInteger
{
static void Main(String[] args)
{
int a = 100, b = 200, c; /*Integer variable declaration.
They can contain values in range of 4 bytes only*/
c = a + b;
Console.WriteLine("Value of Integer variable= " + c);
Console.ReadLine();
}
}
Output:
Value of Integer variable= 300