I'm just learning about character arrays. From what I understand, in C++ character arrays store a space as NULL. Is there a way I can use that to separate an array into two?
    char Full_Name[14] = {Henry Ford};
  /*how would I go about separating that into two character arrays? I have 
    an idea more or less, but surely there's something simple that I haven't 
    learned yet. */
    char First_Name[7], Last_Name[7];
    strcpy(First_Name, )
    strcpy(Last_Name, )
