char* p = "PROGRAM"; char* s = p; char a[] = "STRING"; s = a; printf( "%s\n", p );
int p = 1; int s = p; s = 2; printf( "%d\n", p );