I am going through a file looking for specific words
Char[50]=getline(file,/n)
using getline to store each line into an char array to compare to the string(s) I am looking for
If( “<”x “>”==char[50]) || (“<” y “<”==char[50])||(“<”z“>”==char[50])
Break;
Will using break
, break me out of the loop early?