OK, I'm a newbie C++ programmer. I know there are two ways of storing strings. Either for example, char name[10] or string name (if you include string.h). To capitalise the first letter of any given string in the first example would be easy since you just need to access name[0], but what about in the second example? Does anyone know of any downloadable C++ function references - preferably easy to search/navigate - I'm using the DJGPP compiler and Info aint the easiest thing to get around!

Thanks in advance

Matt