M
Q. What will be the output of the following code snippet when it is executed?
int x = 1;
float y = 1.1f;
short z = 1;
Console.Write.Line((float) x + y * z - (x += (short) y));
- Correct Answer - Option(A)
- Views: 97
- Filed under category C#
Discusssion
Login to discuss.