View Single Post
Old 09-23-2005, 08:02 AM   #7 (permalink)
Valmont
[code][/code] enforcer
 
Valmont's Avatar
 
Join Date: Mar 2003
Location: Netherlands
Posts: 1,544
Valmont is on a distinguished road
Josh2two, experiment with this:
Code:
#include <iostream>
#include <string>

int main()
{
  std::string theWord = "hello";
  theWord[0] = theWord[0]+3;
  std::cout<<theWord<<std::endl;
  
  return 0;
}
__________________
Valmont is offline   Reply With Quote