Search code examples
ctcc

learning c without compiling to an *.exe?


I picked up a copy of tiny c compiler (TCC) so i can do some c programming at work. Unfortunately, a new network security policy prohibits non-IT personnel from downloading/saving exe files. Of course, each time I try to complile helloworld.c the boss gets notified that I'm a malicious haxor...

My question -- is some sort of c interpreter or environment that i can practice c programming? Or some method to compile my programs in a different way to test them without inadvertantly circumventing security measures?


Solution

  • try ideone it gives you a web based front end with the possibilities to compile code and and run it. the output of the program is then printed on the page.