C# Prefix
amiedd
7,469 views
C# Prefix
AmieDD www.amiedd.com
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrefixForm
{
class Program
{
static void Main(string[] args)
{
int x = 3;
int y = ++x;
Console.WriteLine(x+" "+y);
}
}
}
Amie's In-Game Hint
C# Prefix - Prefix increments the value then proceeds with the expression.
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.