I write simple java program in notepad and try to run the program using cmd but got the "Error: could not find or load main class Hello".
I able to run program in eclipse but when i try to run using cmd then i face this problem.
class Hello
{
     public static void main(String args[])
     {
         System.out.println("Hello Parth...");
     }
}
 
    