#include int main( int argc, char * argv[] ) { char *s = "Hello World !"; s[4] = ','; cout << s << endl; }