This C# Program Illustrates AutoIncrement Operator using ++. Here auto increment method is used in various ways and the results are displayed.
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
Sanfoundry Global Education & Learning Series – 1000 C# Programs.
Sanfoundry Certification Contest of the Month is Live. 100+ Subjects. Participate Now!
advertisement
advertisement
If you wish to look at all C# Programming examples, go to 1000 C# Programs.
Next Steps:
- Get Free Certificate of Merit in C# Programming
- Participate in C# Programming Certification Contest
- Become a Top Ranker in C# Programming
- Take C# Programming Tests
- Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Related Posts:
- Apply for Computer Science Internship
- Buy Computer Science Books
- Buy C# Books
- Practice Computer Science MCQs
- Apply for C# Internship