char s[20] = "Hello"; char *s1 = "Hello";
char name[20] = "James"; // name = "James" // need strcpy
int a = 100; int *p = &a; // equal to the following. //int *p; //p = &a;