Hello, in a part of my code, I am checking the length of strings. There are about 60,000 strings to be checked. If I change the number of strings to be checked to like 10, the code works fine. However, as I type this my compiler is still in"frozen" state. Is my PC in the process of evaluating the if statement.
What do you mean by frozen state? Is the program running but just taking a long time? You shouldn't really be having any issues with looping through 60k elements.
Are you storing your strings in a C-style array? Or using a container?