Consider the code segment below:
int x = 10;
int y = 20;
cout << (y - x / y);
What is printed as a result of executing the code segment?
a) 1
b) 1.5
c) 3
d) 20
e) 20.5