What Will Be The Output Of The Following C Code Snippetp Pre #868
What will be the output of the following C# code snippet?</p> <pre><code class="language-csharp" line="1"> class static_out { public static int x; public static int y; public int add(int a, int b) { x = a + b; y = x + b; return 0; } } class Program { static void Main(string[] args) { static_out obj1 = new static_out(); static_out obj2 = new static_out(); int a = 2; obj1.add(a, a + 1); obj2.add(5, a); Console.WriteLine(static_out.x + " " + static_out.y ); Console.ReadLine(); } } </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Miscellaneous Topics - Accessor Controls of Class - Quiz No.1.