Answer:
so that their username will still be used and so the can renember the username
Explanation:
that is why
Answer:
d. Stockholder theory
Explanation:
The theory of maximising profits
Answer:
a is the correct answer
Explanation:
correct me if I'm wrong hope it's help thanks
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);