adplus-dvertising
frame-decoration

Question

What will be the output of the set of code?
static void Main(string[] args)
{
    int [] a = {1, 2, 3, 4, 5};
    fun(a);
    Console.ReadLine();
}
static void fun(params int[] b )
{
    int[] k = { 3, 4, 7, 8,'\0' };
    for (int i = 0; i < b.Length; i++)
    {
        b[i] = b[i] + k[i] ;
        Console.WriteLine( b[i] + " ");
    }
}

a.

Compile time error

b.

3, 4, 7, 8, 5

c.

3, 4, 7, 8, 5, 1, 2, 3, 4, 5

d.

4, 6, 10, 12, 5

Posted under C# programming

Answer: (d).4, 6, 10, 12, 5

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the set of code?