I found a page saying that int a = 12; and int a (12); do the same thing.
But is there something special with the int a (12); way of initializing a variables?
Like, you can do: string test(5, '-'); which would make test = -----
I couldn't seem to find a way to do the same using string the test = way.