-
Where can you find Java and c compilers?
Java: At java.sun.com in the download JDK category. C: Google for "Free C/C++ Compilers"
-
How does a java compiler works?
The working of the Just-In-Time compiler is more or less the same for all the JIT compilers. The source code is compiled to the bytecode by the Java Virtual Machine (JVM).
The JVM also comes with...
-
How does C compiler work?
C is a programming language. Compiler is used to convert our source code which is in high-level language or human understandable code into machine language. Compiled source code can be executed any...
-
How a c compiler work?
compiler is just translator it translates the our source program to equivalent langauage,so computer can easily understand and compile that program efficiently................
-
What is difference between C compiler and Java Compiler?
The C-Compiler generates platform dependant code. Therefore the generated program runs only on the architecture (Intel, Motorola etc.) and OS (Windows, Linux, AIX ...) it was compiled for. Therefore...