Discussion :: Operators
-
What will be the output of the C#.NET code snippet given below?
byte b1 = 0xAB; byte b2 = 0x99; byte temp; temp = (byte)~b2; Console.Write(temp + " "); temp = (byte)(b1 " "); temp = (byte) (b2 >> 2); Console.WriteLine(temp);
Answer : Option C
Explanation :
No answer description available for this question.
Be The First To Comment