answersLogoWhite

0

Editor is not part of the compilation.

For TurboC its TCC myfile.c

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

CAn you work in c or c plus plus without editor?

You can compile, link and execute programs without text-editor.


How do you run c programm with add two numbers?

1. Write the program 2. Compile and link it 3. Execute it by entering its name at command prompt


How do you compile a C program in Linux?

1. Create the source into a file with any text editor, for example: myprog.c2. Compile it: gcc -Wall -W -pedantic -g -o myprog myprog.c3. Run it: ./myprog


What is turbo c programm?

BGIDEMO.C is an example.


How do you write a programm in c plus plus without using function main?

I don't think its possible. Every C++ program must at least have the main function.


What is statement terminator in c language?

The compiler demands it: your programs wouldn't compile without them.


Is C plus plus preprocessor software?

Sometimes, it is. Some implementations compile C++ code into C code, and then compile the C code.


Can you give a sentence with the word compile?

I had to compile a list of all the people who had seen the accident. Take these reports and compile a history starting with the oldest dates first. The doctor asked me to compile my medical history.


How do you install C in your system?

You don't "install" C, C is a language. You create your program in either an IDE(ex. Kdevelop, Dev C++, MS Visual Studio) or a simple text editor, compile it with a C compiler (ex. GNU's gcc), and then run the compiled binary file.


How do you compile c in textpad?

Not possible.


What are the feutures of a good c program?

c program is fast and efficient.And c programm can be write with vareity of type variables and operations.


Can you print string without using semi column in printf statement in c programming?

If you forget the semicolon, your program won't compile.