Static void main (string [] args)
{
//
// Todo: Add code here to start the application
//
INT i = 0;
i =    i;
Console.writeline ("i = {0}", i); // Output i = 1
}
Static void main (string [] args)
{
//
// Todo: Add code here to start the application
//
INT i = 0;
i = i   ;
Console.WriteLine ("i = {0}", i); // Output i = 0
}
void main ()
{
INT i = 0;
i = i   ; // i =    i;
Printf ("i =% D", I); // Output I = 1
}