Any Online compiler you know for C or other langua

2019-03-08 21:15发布

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

12条回答
虎瘦雄心在
2楼-- · 2019-03-08 21:21

Comeau has an online C/C++ compiler, but it's mainly to evaluate their compiler.

or cygwin

I'd rather recommend to install cygwin, you'll get an unix-like environment, with gcc. Then setting up a Makefile - or even just a shell script - to be able to compile is not a big deal.

查看更多
贪生不怕死
3楼-- · 2019-03-08 21:21

I have nothing for C. For other languages, this is a ruby interpreter. But honestly the best online development environment is the browser itself. Javascript is an advanced language. Combined with technologies like CSS and DHTML and frameworks like jQuery or Prototype you can build graphics applications. It is not hard to find debuggers (like Firebug) also.

Of course you can't interact with the file system. To overcome this you could write a plug-in for a browser (notably Firefox). There are many resources available for this and although it is not as straight forward as pure javascript, it is easier than most people believe.

查看更多
beautiful°
4楼-- · 2019-03-08 21:23

just a sudgestion.

I do not know why you do not want simply to install a compiler. However did you considered the possibility of using a portable one?

http://en.wikipedia.org/wiki/Portable_C_Compiler

best, Ste

查看更多
兄弟一词,经得起流年.
5楼-- · 2019-03-08 21:24

Just install something like tcc. It's seriously not worth messing around with an online compiling site if you're going to be compiling files on any sort of regular basis.

查看更多
【Aperson】
6楼-- · 2019-03-08 21:29

You asked for other languages: Here's one for Lisp (not a compiler, but an interpreter)

Online Lisp interpreter in Flash

查看更多
登录 后发表回答