belongs to collection: C# Multiple Choice Questions And Answers
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(); } }
Correct Answer:
2 16 4
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Correct Answer:
2 16 4
need an explanation for this answer? contact us directly to get an explanation for this answer