answersLogoWhite

0

Is compiler is platform independent

Updated: 11/18/2022
User Avatar

Wiki User

13y ago

Best Answer

No. (Of course you should specify what compiler you are talking about.)

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

No. (Theoretically, you could write a C-compiler in Java, that compiles C to java byte-code.)

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is compiler is platform independent
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which os is build in Java compiler?

Java compiler available on multiple platforms, the class files it generates are platform-independent.


Why java called platform indeependent?

Platform independent language means once compiled you can execute the program on any platform (OS). Java is platform independent. Because the Java compiler converts the source code to bytecode, which is Intermidiate Language. Bytecode can be executed on any platform (OS) using JVM( Java Virtual Machine).


Is c platform independent or dependent?

No. Not only will C source code have to be recompiled to work on different machines, but implementations of platform-specific concepts (file system management, UI, etc.) will have to be rewritten completely to work on a new machine.


Is java fully platform independent?

Java is a platform independent language.After compiling the ".java" file ,that will be converting into the ".class" file,which is a byte code having the capability run on any OS.Basing on the concept byte code java achieving the platform independent,it leads to "Write once run anywhere".


How java platform independent with complete architecture?

java is platform independent because java code is compile on javac compiler after create one class file this file is run any of paltform run this code becauase jvm is understand this code properly managed. jatin patel


What is cross compiler?

A cross-platform compiler can compile applications for multiple platforms, such as Windows, Linux, and Mac. An open-source cross-platform compiler is GCC (the GNU C Compiler). A cross-platform compiler uses a language that can be compiled on to multiple targets, such as C, C++, or haxe. It is required to compile the same source code multiple times, one for each target platform; a program such as make can be used to reduce the number of commands the user actually executes to just a single command.


What is the name of the C compiler used by Linux?

gcc is the most common C-compiler for GNU/Linux platform.


How vsam is platform independent?

IS Seq file also platform independent or dependent?


How do you get the c plus plus standard library on your compiler?

platform-dependent


Is Net framework platform independent?

Yes. no .net is not platform independent is supports on OS .... as is need clr for Linux to support it but till now .net platform is not independent ...


Are JVM is platform independent?

No, they must be designed for specific platforms. The compiled programs are platform-independent.


Why Java is preferred in writing cross-platform applications?

Java is a platform independent language and hence the code written in/for windows can be run without much rework in Unix or Mac. The compiler takes the source code a byte code is created after compilation. This bite code can be interpreted by any JVM and this gives java its platform independence. Hence it is preferred for cross-platform apps.