-
Notifications
You must be signed in to change notification settings - Fork 97
/
compilers.php
35 lines (35 loc) · 1.1 KB
/
compilers.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
require_once "top.php";
require_once "nav.php";
?>
<h1> Free online C compilers</h1>
<p>
These are free online C-Compilers available on other sites.
These compilers will use a modern version of the C syntax so you might get
warning errors when you compile the code directly from the 1978 edition of the book.
</p>
<ul>
<li><a href="https://replit.com/languages/c" target="_blank">
https://replit.com/languages/c
</a></li>
<li><a href="https://www.pythonanywhere.com/" target="_blank">
PythonAnywhere - Use the Shell
</a></li>
<li><a href="https://www.tutorialspoint.com/compile_c_online.php" target="_blank">
https://www.tutorialspoint.com/compile_c_online.php
</a></li>
<li><a href="https://onecompiler.com/c" target="_blank">
https://onecompiler.com/c
</a></li>
<li><a href="https://godbolt.org/" target="_blank">
Godbolt Compiler Explorer</a></li>
</ul>
<p>
Please let me know if this list should be updated.
You could even edit the
<a href="https://github.com/csev/cc4e/blob/master/compilers.php" target="_blank">
the source code for this file</a>
and send a GitHub Pull Request.
</p>
<?php
require_once "footer.php";