JavaScript でできるように、C++ でデータ型を拡張する方法はありますか?
これは次のようなものだと思います。
char data[]="hello there";
char& capitalize(char&)
{
//Capitalize the first letter. I know that there
//is another way such as a for loop and subtract
//whatever to change the keycode but I specifically
//don't want to do it that way. I want there
//to be a method like appearance.
}
printf("%s", data.capitalize());
これは何とか印刷されるはずです。