public static void main(String[] args)
{
  Clock c = new Clock();
  c.m = c.m + 1;
  //where m is a private instance variable in an another class.`
}
Why is it incorrect for the main() method using a class Clock to have the second statement below? Please help?
 
     
     
    