2006-09-01 12:37:46 UTC
char a[ ] = "abc", *p = "def";
What is the effect of the following statement?
p=a
a. It copies the string "abc" into string p
b. It changes p to point to string "abc"
c. It copies the first character of a ton the first character of p
d. It generates an error