0

初心者向けにCを教えるウェブサイトがあります。

ユーザーが自分のコードをオンラインで簡単にコンパイルできるように、Cコンパイラのオンラインバージョンを作成しようとしています。

利用可能なコンパイラはありますか?可能な場合、どれが最適ですか?

いくつかのコンパイラを見つけましたが、ユーザーからの入力を受け取る機能はありませんが、出力を表示するだけの機能があります。

4

1 に答える 1

2

There is no package that can just be added to a blog so people can try C online and see the results.

You could provide a link to gcc or another compiler so your readers can try it themselves.

If you were really serious, a CGI script could be created on the server side which:

  1. Runs in a sandbox (this is critical to get right and is potentially dangerous if done incorrectly)
  2. Compiles the source code
  3. Runs the compiled code
  4. Returns the results

Sorry that I can't give you an easy answer, but there it is.

于 2012-07-19T05:07:17.243 に答える