How do you write a C program which runs independent of the compiler No need to install the compiler?

1 answer

Answer

1151351

2026-07-14 13:01

+ Follow

Java
Java

Any computer program does not need compiler at the time of execution. Compiler is needed to convert a high-level language program into an intermediate machine code. When you run a program, the executable binary runs, and that is what you get after compilation, etc. Summary: your Q is incorrect. Please read about compiler, and linker to understand the concept. You cannot write c or c++ code and run it without a compiler. a compiler translates a high level language (c, c++, Java) into basic computer code (binary) which is composed of 1's and 0's (101001111001). but you can run it without a compiler if it has already been turned into an executable or an application by another computer.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.