+ 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); } } }

16th Apr 2017, 6:11 AM
Olorunishola Bayo Habeeb
Olorunishola Bayo Habeeb - avatar
4 Answers
+ 2
Output x =10 y =20
16th Apr 2017, 6:20 AM
Olorunishola Bayo Habeeb
Olorunishola Bayo Habeeb - avatar
+ 1
x = 10; y = 20
16th Apr 2017, 7:06 AM
Volker Milbrandt
Volker Milbrandt - avatar
+ 1
X=10 Y=20
16th Apr 2017, 1:36 PM
aml
0
So what is your question?
16th Apr 2017, 6:14 AM
Petja Boigk
Petja Boigk - avatar