0 1 4 5 10
Here is source code of the C# Program to Illustrate AutoIncrement Operator using ++. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/*
* C# Program to Illustrate AutoIncrement Operator using ++
*/
using System;
class Program
{
static void Main()
{
int i = 0;
Console.WriteLine(i);
i++;
Console.WriteLine(i);
i += 3;
Console.WriteLine(i);
++i;
Console.WriteLine(i);
i += i;
Console.WriteLine(i);
Console.ReadLine();
}
}
Here is the output of the C# Program:
0 1 4 5 10