The answer is a <u>sequence structure</u>
Answer:
The code is not dereferencing the pointers. You have to place an asterisk in front of the pointer to read the value the pointer points to.
Explanation:
So "if (str1 != str2)" must be "if (*str1 != *str2)".
likewise:
while (*str1 != 0 && *str2 != 0)
and
result = (*str1 == *str2);
Answer:
data
Explanation:
got it right on edgenuity
Answer:
(b) 64000
Explanation:
Assuming that the "Memo" being mentioned is a Microsoft Access memo field, it can hold up to 64,000 characters, even in the more recent version of the application where the "Memo" is now know as the "Long Text" field.
According to microsoft.com, "In earlier versions of Access, we used the Memo data type to store large amounts of text... the Long Text field works the same as the Memo field of old... [it] can only display the first 64,000 characters."
<em>Please put "Brainliest" on my answer if it helped you out the most!</em>
<em>(Further Reading) If you're still confused, I suggest you search up the following:</em>
<em>- Microsoft Access Long Text character limit</em>