Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a C/C++ IDE that wouldn't prompt to save before compiling?

Here's a common situation for me: I have this idea of a code in my head (in this example, it's in Python), so I open up PyScripter, write the code and then simply run it. PyScripter doesn't ask me to save the code beforehand and in a matter of seconds I happily glance at my algo's results.

Now I understand that C is a compiled language and the code must be saved beforehand, et cetera, et cetera, but I was wondering if there is such an IDE that let's you simply enjoy your code without having many saved files or folders named "test1.*","test2.*", etc...

One way I guess this could be done is that the IDE will manage all project files in a temp folder, up until (and if at all...) the user clicks on "save/save as"; then it will actually save the files in a desired location. So in most cases, where the user just wants to write a code and see its output, the IDE won't bother the user with save prompts.

I'd be very glad if someone could recommend me of such IDEs (if they even exist). A big thanks in advance =]


edit: @Michael Burr Yes, the intention was indeed not to come up with filenames in the first place.

like image 898
Py42 Avatar asked May 14 '12 20:05

Py42


1 Answers

You can try ideone.com. I find it very convenient :-)

It's online so no actual installation is required, and it supports a lot of known programming languages.

like image 154
Eitan T Avatar answered Nov 06 '22 23:11

Eitan T