void incrementMe(int * x); *x++; } int main(void){ char str[10] = "ABCDE"; char * strpt = str; *strpt++; printf("%s\n", strpt); return 0; }