1234567
char str[5] = {'h','e','l','l','o'}; char *strp = str; for(int i = 0; i < 200; i++){ std::cout << strp; strp++; }