Arithmetic Operators
Easy 10 pointsCalculate the sum of 10 and 5, then display the result.
C supports arithmetic operators: + (addition), - (subtraction), * (multiplication), / (division), % (modulo).
Your code
Hint
Use int result = 10 + 5; then printf("%d\n", result);
Result
Click "Run code" to see the result of your code. Click "Submit" to check if your answer is correct.