Difference between these when relating it with Operator Priority using prefix and postfix
// program 01
int x =10;
int c = x++ + ++x;
Console.WriteLine(c); // output will be 22
// program 02
int x =10;
int c = ++x + x++;
Console.WriteLine(c); // output will be 22
// program 03
int x =10;
int c = ++x + x;
Console.WriteLine(c); // output will be 22