Quote Originally Posted by Salem View Post
>
Except most people go and do something more enjoyable, like visit the dentist, than wade through a page of unformatted code.
You're competing with others for a finite amount of attention time, and unindented code counts against you.

Besides, if you format to begin with, you'll have a much easier time yourself as well.
Well, i never really learned any good ways to format stuff, do you know any tutorials / articles on how to format code?...Going to look around after this myself as well.

Quote Originally Posted by Salem View Post
MinGW (actually GCC underneath) supports variable length arrays in C++ as an extension.
Ok, i didn't know that, but since the string length will always be a variable i think im going to continue using it for now. The other option would be to set it to a static size, although i dont like that because of the danger of a overflow since i dont know what will come in.