Since I've started doing serious things with C I need now to know if there's a way to make console (or terminal) not appear when the program starts.
Is there a code line for this?
I'm using SDL.
EDIT: I use Code::blocks
Since I've started doing serious things with C I need now to know if there's a way to make console (or terminal) not appear when the program starts.
Is there a code line for this?
I'm using SDL.
EDIT: I use Code::blocks
In your project settings you probably specified that your application is a console application. So the IDE makes sure that a console is opened for you when you launch the program. Change your project settings to fix this.
Edit: This SO answer is what you're looking for: How to get ride of console box of a GUI program compile by MinGW + Code::Block