0
Is there any other way to compare a string other than using string compare functions ?
4 Answers
+ 7
You can always use comparison operator "=="
0
You can use pointers to do that.
I mean, not the comparison but for traversing if it is a long string and if you want a match for a particular word.
And yes == will do the job.
0
Okk thank uh