Can I install some kind of online compiler on my personal website?
I want to provide verification of c ++ code on my site.
I didn’t understand how it was implemented from the point of view of integration into a web page, but for example on cppreference.com you can click the Run this code button to execute the code below.
As can be understood from the inscription:
Powered by Coliru online compiler
The features of the site http://coliru.stacked-crooked.com/ are used as the core.
Therefore, you can search for answers on the site, how to properly use their API to access the online compiler.
PS A list of online C ++ compilers can be found in the description of the c ++ label
Source: https://ru.stackoverflow.com/questions/536275/
All Articles