Been thinking, what\'s the difference between declaring a variable with [] or * ? The way I see it:
char *str = new char[100]; char str2[] = \"Hi world!\"; <
Please also take a look at the http://c-faq.com/aryptr/aryptr2.html The C-FAQ might prove to be an interesting read in itself.