rambo3131
- 18
- 0
Hi, I have a question about C.In a two dimensional array ,I will search a word (not a letter).Do i have to use pointers?
No, you can use array indexes in two nested for loops. Note that you will need to use a string comparison function (strcmp) rather than a condition like this one:rambo3131 said:Hi, I have a question about C.In a two dimensional array ,I will search a word (not a letter).Do i have to use pointers?