+ 1
What is Output of this?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { int x = 10; double y = 20; Console.WriteLine("x = {0}; y = {1}", x, y); } } }
4 Answers
+ 2
Output
x =10
y =20
+ 1
x = 10; y = 20
+ 1
X=10
Y=20
0
So what is your question?