answersLogoWhite

0

Very carefully.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Is NotePad Plus Plus a compiler?

Notepad++ is a text editor, not a compiler. You can however, enter source code into Notepad++ and then compile it with a compiler such as GCC.


How do you edits program using Linux compiler?

You don't. The compiler is used to compile programs, not edit them. Most source code can be edited using a standard text editor.


What does a compiler do when you compile your program?

Coverts source code into object code


What is Commands for the compiler that are needed to compile and run your program?

javac is the command that is used to compile Java source files.


What are the main features of a compiler in C programming language?

A compiler is a comp. Program that transforms source code written in programming language into another comp. Language.the main reason to compile a program is to create an executable program...


How do you Compile the C Programs in command prompt?

That would depend on the compiler you were using and the file(s) you were trying to compile. Differen compilers would have different ways to run them, so you would need to know the commands for your particular compiler, if it is capable of running from the command prompt.


Which compiler is used by operating sysytem?

None. Operating system doesn't compile source programs.


What is compile time and run time?

Compile time is when the compiler translates your source code into computer language. Run time is when the actual program runs.


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 part of speech is compiler?

Compile is a verb.


When you compile a program do you have to give a command to print the source program?

No. You can compile without printing the source. Indeed, I know of no compiler that would allow a program's source to be printed while it is being compiled. They are completely separate and unrelated tasks.


How do you compile a file in C?

First you need to create a text file containing the source code written in the C language. Then, you call the compiler to check the syntax of your source code and translate it into machine code. The exact means of calling the compiler depends on the operating system you are using and the vendor of the C compiler. For example, in some Unix systems the C compiler may be called as: cc CC xlC xlC_r aCC gcc and others ...