#include int main(void) { char Str[24]; char *pstr; strcpy( Str, "Pointer is a point of C."); printf("%s\n", Str); pstr = Str; *pstr = 'p'; printf("%s\n", Str); return 0; }