CJCoding With Joseph
← Back to Question List
C# Code Walkthrough #1

Integer Division Truncates

easyOperators

📄 Code

Read carefully — what does this print?
1int x = 7 / 2;
2Console.WriteLine(x);

🎯 Your Answer

Next →