A Silly C# Programming Puzzle!
# define i
using System;
using System.Text;
namespace ex11
{
class Program
{
static void Main(string[] args)
{
int i = 8;
# line hidden
++i;
# line 5
# pragma disable
# warning reverse execution is noitucexe
# line 4
# line 12
System.Console.WriteLine("i = {0}", i) ;
}
}
}
Answer tomorrow!


It will compile and output as i=9.