This C# Program Demonstrates Postfix Operator. Here “First use it in expression, than increase value by 1 of x” is implemented .
Here is source code of the C# Program to Demonstrate Postfix Operator. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/*
* C# Program to Demonstrate Postfix Operator
*/
using System;
namespace Program
{
internal class Program
{
private static void Main(string[] args)
{
int Input = 100;
Input = Input++;
Console.WriteLine("Number After post Increment : " + Input.ToString());
Input = Input--;
Console.WriteLine("Number After post Decrement : " + Input.ToString());
Console.ReadLine();
}
}
}
Here is the output of the C# Program:
Number After post Increment : 100 Number After post Decrement : 100
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:
- Buy Computer Science Books
- Practice MCA MCQs
- Practice Computer Science MCQs
- Apply for C# Internship
- Apply for Computer Science Internship