You can use any text editor you want, mcedit can be a good choice for beginners.
------------------------------------------------------------------
There are lots of text editors but assuming that you run in a graphical mode l would recommend
codeblocks
Codeblocks is not just an editor it is a fully functional IDE and it is good. Codeblocks is also available for Windows.
Codeblocks can adapt to many different compiles including the free Microsoft compiles.
Answer:NEdit is a good graphical X Windows editor that support many languages.
nedit.org
c
there is no solution of this problem...........that's it..........
You could, if you had conio.h in linux, but you don't have, that's why.
It depends on the editor.
Reference:cprogramming-bd.com/c_page2.aspx# sum the series
Simply any text edittor can be used to write C program. To compile the .c file saved, Linux comes with gcc compiler. In the command line: $ gcc -o outputfile inputfile.c will compile the inputfile.c and create executable outputfile. Other than that there are number of IDEs (i.e. Integrated Development Environment) are available such as Kdevelop, Eclipse etc.
This question cannot be answered without seeing the source program.
Very little. C is a very common language to write operating systems in.
Linus Torvalds wrote the Linux kernel in C. Other components written by other contributors for other distributions may be in C or C++.
a c program for creat a virus
1. Create your source-file with any text-editor (mcedit myprogram.c, for example).2. Compile it: gcc -g -Wall -W -pedantic -o myprogram myprogram.c3. Fix the errors and warnings, if any4. Run your program: ./myprogram(Note: you should not use linux-9.0 yet, as only linux-2.6.x released).
C isn't a program, or something you install; it is a programming language for writing software. Linux and most of the programs that run on it were written in C, and a C compiler and libraries are supplied with most systems, or are readily available.