answersLogoWhite

0

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

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the first step to using Linux lvm?

The first step to using a Linux LVM would be to install the program onto the Linux computer. The second step would be to activate the program and use the program for its purpose.


What is the difference between C and Linux?

There is very little difference in the C compiler between Unix and Linux; in some cases (the gcc compiler) it is the same. The differences come in when using system calls; some system calls do not exist in Unix or Linux, although most do. The program I work on compiles the same way (for the most part) between all commercial versions of Unix and several variants of Linux. In other words, the code is fairly portable across platforms.


Is c an application or software?

"C" is a programming language. It is implemented by writing a program using the C syntax and then translated by a compiler, which is an application program.


What command should be given to run a C program from the DOS prompt?

This depends on what compiler you're using, but they all generally have the same process. Example: Converts source code stored in the file test.c into an executable program in test.exe using the GCC compiler... gcc -o test.exe test.c To run the program you can now just run test.exe.


Are languages and compilers application softwares?

No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.No. A compiler is a system software. An application can be created using a language and a compiler. A language is what you write the software with.


When using CodeBlocks IDE for Linux how do you compile the program you are writing as an EXE?

CodeBlocks is an extensible, cross-platform IDE but it does not come with a compiler nor a linker since they are platform-specific. When you first run the IDE, it will scan your system for all supported compilers and integrate them into your IDE If you have more than one supported compiler, then you must choose the master compiler. But if you have no compiler, then you must add one. To build an EXE you must configure the project's compiler and linker switches according to your chosen compiler. Consult the compiler's own documentation for more information on this.


How do you install netbeans using its source code?

Most Linux applications can be compiled and installed by issuing the following commands:./configure - This configures the compilation script, and checks to see if you have a working compiler installed.make - This compiles the program.make install - This places the program in the proper directory, such as /usr/bin or /usr/local.


How do you start a webcam conversation on lunix messenger?

There is no program called "Lunix Messenger." There isn't even a program called "Linux Messenger." There are several different instant messengers available for Linux. Pidgin does not support webcams, while Kopete does. You need to specify what program you are using.


What are the risks of using compiler interpreter assembler?

The error messages may be frustrating as they show that your program is not perfect... Or I do not know what risk you mean...


How can you download c compiler?

write a c program to fine largest/smallest of 3no (using ?:ternary operator/conditional operator)


What happen in computer while creating and executing a c or java program?

C and Java compile using different methods For a C program: A C file (sample.c) goes into a Preprocessor which takes care of text replaces (#DEFINE, etc) and outputs sample.i, which is still plain text, but edited. sample.i is sent into a compiler which converts the code into sample.s, an Assembly program. sample.s is sent into an Assembler and sample.o is output. Sample.o contains object code (binary). Then several .o files are combined with a linker to create an executable. Java code is compiled into Java byte code (.class files) which run on the Java Virtual Machine (JVM). The big difference here is that you can write a .c program anywhere, but if you compiler on Windows you're going to get a different .exe than if you compile on a Linux machine. You'll get different executables depending on where you compile because there's numerous compilers. There's only one Java compiler, so if you write a program in Java on a Windows machine, you can copy it and run it on a Linux machine with no problem (assuming the Linux has Java installed)


Is there anything like a Windows Interface Adaptor which would help us to execute a code written on Linux using remote windows server?

Your question isn't exactly clear on whether you are trying to run a program on Linux or Windows, using one to control the other from a distance. If you are trying to control a Linux server from Windows, you can use a program called PuTTY to log into it remotely. If you are using Linux, a few Remote Desktop Protocol programs to control Windows are available.