+ 4
Do we have to start with {0} for printing in c#?
https://code.sololearn.com/c6vC83H9OeJi/?ref=app sorry for asking such a basic question. I am new in c#
3 Réponses
+ 2
You can do this way also
Console.WriteLine("x = "+x);
Console.WriteLine("y = "+y);
0
Thank you everyone for giving your valuable time.
0
Md. Nasif-ur-Rahman Rimon you are right but in c++ we write the way given by you and Abdulaziz Abdurasul .