Essay on The Republic Day | Republic Day Essay in English
[ Festival Ganesh Chaturthi Essay in English for Students and Children ] [ Essay on my favourite freedom fighter ] ⚔️ [ दुर्गा पूजा पर निबंध (Durga Puja Hindi Essay) ]
[Essay On 75th Independence Day Of India] [Azadi Ka Amrit Mahotsav Essay in English]

Which of the following will be the correct output for the C#.NET pr

Loading

Practice Bitwise Operators Questions –

Which of the following will be the correct output for the C#.NET program given below?

namespace ConsoleApplication {
struct Sample {
public int i;
};
class MyProgram {
static void Main() {
Sample x = new Sample();
x.i = 10;
fun(x);
Console.Write(x.i + " ");
}
static void fun(Sample y) {
y.i = 20;
Console.Write(y.i + " ");
}
};
}

Which of the following will be the correct output for the C

Loading

Practice Bitwise Operators Questions –

Which of the following will be the correct output for the C#.NET program given below?

namespace LogicConsoleApplication {
struct Sample {
public int i;
}
class MyProgram {
static void Main(string[] args) {
Sample x = new Sample();
x.i = 10;
fun(ref x);
Console.Write(x.i + " ");
}
public static void fun(ref Sample y) {
y.i = 20;
Console.Write(y.i + " ");
}
}
}