Any online C compiler that you know which can do the following:
- Compile and execute the C programs online
- File handling
- System functions like
exec()
,system()
,fork()
Or any compiler which does not need installation procedure (I mean that you can just copy paste a folder to run the compiler easily)
Note:Please do not propose Turbo C.I know some online compilers at codepad.org (gcc). I was using codeide.com but its out of service now I think. And as asked above online compiler will be a best advice that you can give for me.
My environment is Windows ... Thanks in advance. Any advices on other Language compilers are also invited
For Python and Sage, try out http://live.codenode.org. It is also open source under the BSD license, so you can be download and run it from your own computer, more info is here: http://codenode.org
We have another compiler for C and C++ here: http://www.codepad.org/
DJGPP Public Access Cross-Compiler (C/C++, DOS32, based on GCC)
Maybe my answer is a bit late, but we have created an online compiler and IDE where you can run and create your files using just a browser.
At the moment we support a few languages (C, C++, ObjC, Java, Pascal, Fortran) and a simple file system, but we will enable many more features for better coding and debugging during the near future.
All the features offered at the moment are completely free and there is no registration needed (you can register though in order to keep your files online).
You can try our service here: www.sourcelair.com
yet another online compiler:
http://cmpe150-1.cmpe.boun.edu.tr
It supports sytax highlight, indentation etc. I wrote it as a part of my MS thesis
PS: did not test fork command
One of the better lists for C++ is
isocpp Getting Started
page. UnfortunatelyCameau's
seems to be disabled for now.LiveWorkspace
has been in maintenance mode for a while and it is not clear when it is coming back, which is unfortunate since it has a simple interface and when it was working allowed you to switch betweengcc
,clang
andintel
very easily.Of the ones that are left
Coliru
is the most powerful, you have a full command line available and you can save files and therefore uses multiple files in your project.The
isocpp
list somehow is missingcodepad
which although rather primitive along withColiru
allows you to useboost
.Coliru
,ideone
andcodepad
all support many other languages as well. The list of languages supported byideone
andcodepad
is pretty large and is obvious on the main pages withColiru
you don't have a list but besidesC
andC++
it also supportspython
,perl
andruby
.