Which of the following changes to SomeClass will allow other classes to access but not modify the value of myC ?
(A) Make myC public.
(B) public int getC()
{ return myC; }
(C) private int getC()
{ return myC; }
(D) public void getC(int x)
(E) private void getC(int x)
{ x = myC; }