- 1
What is the out put int X = 3; int y= xxy; console . write line (x+"y+")
4 Answers
+ 11
error.
you can't store xxy in the y variable unless you have declared a variable called xxy before with some integer value in it. Also Console.WriteLine() doesn't have any spaces in it.
+ 1
Thank you so much
0
it's well give error.
0
1. assignment int y = xxy is not correct as you are trying to assign string value into integer.
2. Console.WriteLine(...) should not contain spaces .