Daniel M. answered 06/13/19
Award Winning Lead Software Engineer and College Instructor
char one[] = "abcdefg";
char* two= "abcdefg";
Both achieve the same direct result but operate slightly differently. The first example creates and array of char and then copies the string to that array. The second example creates a pointer to the string.