They recommend Dev-C++ but since it doesn't exist for Linux I tried to use it thourgh Wine but I don't really like it that way. Instead I'm using Code::Blocks, which has native support for Linux.
I have no problem coding with it but I can't compile any of my work. I've discovered with a little research that there are issues specifically on the AA1. I tried installing some packages (GNU GCC Compiler) but it still doesn't work. In fact, it now starts compiling but runs into an error. The build log says:
Compiling: (directory)/file.c g++ -0 -c "(directory)/file.c" -o "(directory)/file.o": No such file or directory. Process terminated with status 1 (0 minutes, 0 seconds) 0 errors, 0 warnings
Of course it can't find any ".o" file, it's not there: my file is a ".c". But why is it searching for that and what am I supposed to do in order for the program to create/find that file or stop it from looking for it??
In Dev-C++/Wine, the file does compile properly but I can't run the created program since it's a .exe and Linux obviously does not have the required Windows console. Code::Blocks for Linux simply doesn't compile at all...
I'm hoping somebody knows a thing or two about old-school programming...