This C# Program Demonstrates Prefix Operator. Here Prefix Operators are the Operators which are added-placed before the variables to perform tasks.
Here is source code of the C# Program to Demonstrate Prefix Operator. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/*
* C# Program to Demonstrate Prefix Operator
*/
using System;
namespace Program
{
internal class Program
{
private static void Main(string[] args)
{
int Input = 100;
Input = ++Input;
Console.WriteLine("Number After pre Increment : " + Input.ToString());
Input = --Input;
Console.WriteLine("Number After pre Decrement : " + Input.ToString());
Console.ReadLine();
}
}
}
Here is the output of the C# Program:
Number After pre Increment : 101 Number After pre Decrement : 100
Sanfoundry Global Education & Learning Series – 1000 C# Programs.
advertisement
If you wish to look at all C# Programming examples, go to 1000 C# Programs.
Related Posts:
- Check MCA Books
- Check Computer Science Books
- Apply for Computer Science Internship
- Apply for C# Internship
- Check C# Books