+ 2
How to combine html and c language??
taking input from html page and do the calculations using c language. ex: in addition of two numbers ,how to take input as two numbers from html page and add those two numbers using c language
1 Respuesta
+ 1
Maybe this is what you are looking for
C:
http://www.i-visionblog.com/2014/02/creating-website-using-c-programming.html
C++:
https://blog.sourcerer.io/building-a-website-with-c-db942c801aee
But you cannot create html page like you are used to and just connect C/C++ in the same way as javascript.
Web browsers cannot execute C/C++ code. But you can try to find c-> javascript translator or make/use a web server in C
P.S. If you haven't deep knowledge about web servers, it’s best to postpone it.