What is the purpose of javac ?
Answers
Answered by
0
javac is the Java compiler which you get with the standard Java Development Kit (JDK). It compiles .java files into .class files, when people talk about “The Java compiler”, they mean javac. That program converts your human readable .java file into a machine readable file called a .class file.
Similar questions