Home / C# Programming / Operators :: Discussion

Discussion :: Operators

  1. What will be the output of the C#.NET code snippet given below?

     int a = 10, b = 20, c = 30; 
     int res = a 
     Console.WriteLine(res);

     

  2. A.

    10

    B.

    20

    C.

    30

    D.

    Compile Error / Syntax Error

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment