answersLogoWhite

0

How is a C program compiled?

User Avatar

Anonymous

14y ago
Updated: 8/19/2019

With a compiler. Read the documentation for programming package for help on how to.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How program can be complied in c?

C programs can be compiled with a C compiler. Are you surprised?


How do you run a C program on SunOS?

A "C" program has to be compiled to machine code on any Unix system, whether it is Solaris or some other version. After compiling the program, execute it by typing in the name of the compiled program created by the "C" compiler. The standard name is 'a.out', but it could be named anything you want.


How do you run c program without ideon dos?

Once the application is compiled, there is no need for an IDE.


What is the meaning of platform depended in c?

The program compiled on one platform may not run in another platform.


What is the difference when c program is written and compiled in Microsoft and unix?

If by 'Microsoft' you mean 'Windows', then the difference is the platform.


All compilers are written in C and to run a C code you need a compiler..how was the first program was compiled?

All compilers were not written in C. Some are written in Assembly Language.


What is the use of c compiler in windows?

The c compiler in Windows converts the binary code from source files. C is a compiled programming language and it needs to be converted for the program to run.


How do you use compiled in proverb?

The program compiled itself to give the correct result.


Is C plus plus interpreted as the program is executed?

No. Neither C nor C++ are interpreted. Both need to be compiled and linked to produce highly-optimised machine code, which is then executed.


There a program that uses both interpreted and compiled code?

Yes.EasyTreve Plus has both an interpreted and a compiled version available.


What is a compiled program that runs on the client inside of an interpreted program?

As far as I know, interpreted software does not run compiled software at all.


How do you run a program in c-language give me answer briefly?

First it needs compiled. The simplest way is to use the terminal and type gcc my_program.c Then to run your program type. ./a.out