What will the following code print:
 
class Test { 
    static void increment(int p) 
    { 
      ++p; 
    } 
    static void Main( ) 
    { 
      int x = 8;
      increment(x); 
     Console.WriteLine(x++);
    } 
}
 
Explanation
X parameter is passed into the method by value. The value will be printed first and then incremented because in this case postfix operator is used

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты