How do I compare these two character arrays to make sure they are identical?
char test[10] = "idrinkcoke"
char test2[10] = "idrinknote"
I'm thinking of using for loop
, but I read somewhere else that I couldnt do test[i] == test2[i]
in C.
I would really appreciate if someone could help this. Thank you.