HTML JS
(quick guide & example)
git clone https://github.com/emscripten-core/emsdk.git
cd WHERE/YOU/INSTALLED/EMSCRIPTEN emsdk update emsdk install latest emsdk activate latest emsdk_env.bat emcmdprompt.bat
cd WHERE/YOU/INSTALLED/EMSCRIPTEN ./emsdk install latest ./emsdk activate latest source ./emsdk_env.sh
#include <stdio.h> int main(int argc, char ** argv) { printf("Hello world!\n"); }
COMPILE emcc hello-world.c -s WASM=1 -o hello-world.html
LAUNCH IN BROWSER http://site.com/hello-world.html