What will be the output of the following code snippet?
using System;
class program
{
static void Main(string[] args)
{
int x = 8;
int b = 16;
int c = 64;
x /= c /= b;
Console.WriteLine(x + " " + b+ " " +c);
Console.ReadLine();
}
}
- 2 16 4
- 4 8 16
- 2 4 8
- 8 16 64
Correct Answer:
2 16 4
need an explanation for this answer? contact us directly to get an explanation for this answer