In this article, we have explored how we can develop an online C Programming language compiler using Flask (a Python web framework). It can be extended to support any programming language. The basic idea is to store the text form the textarea into a file on the server machine and compile and execute the file on the server machine and return the output/error (if any) to the user.
Flow of application
Now we will learn about how the dataflow occurs in the application. As you can see in the...
Published on May 17, 2020 04:32