int x = 8 int y = 15 (x what will be here y) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

int x = 8 int y = 15 (x what will be here y)

27th May 2018, 7:16 AM
Running in the 90s
Running in the 90s - avatar
2 Answers
+ 3
int x = 8 int y = 15 is a wrong code in c#. This will generate errors. For giving the value of 8 to x and 15 to y. You can write it as int x = 8; int y = 15; Here you declare two integers of name x and y of value 8 and 15 respectively.
27th May 2018, 7:34 AM
Akash Pal
Akash Pal - avatar
0
oh sorry but I want answer what will be between (x y) it's in c# test of this app
27th May 2018, 10:45 AM
Running in the 90s
Running in the 90s - avatar