// Elvis.cpp (c) Kari Laitinen // http://www.naturalprogramming.com/ // 1997-??-?? File created. // 2013-11-06 Last modification. #include using namespace std ; int main() { char character_positions[] = "0123456789012345678901" ; char elvis_sentence[] = "Elvis was a rock star." ; cout << "\n " << character_positions ; cout << "\n\n " << elvis_sentence ; elvis_sentence[ 12 ] = 'm' ; elvis_sentence[ 14 ] = 'v' ; elvis_sentence[ 15 ] = 'i' ; elvis_sentence[ 16 ] = 'e' ; cout << "\n\n " << elvis_sentence << "\n" ; }