My code reads as below: if (array[i].name == name)
Array.name is assigned by an argc, then name is entered by the user. I've used a debugger to check the values, and prior to hitting this if command, array[i].name = Joe and name = Joe.
But the if function doesn't run... I'm lost. Everything I can see is showing that these two strings hold the same word, so why won't the if command recognize that?