Some C code I am working on has the following line,
strcmp(str1+4, str2);
strcmp returns,
0 for equal ASCII values of both strings
'1' for where str1 has a greater ASCII value than str2
'-1' where str1 has a lesser ASCII value than str2
Given this notation, is it possible 'str1+4' is the ASCII value of 'str1' and then adding 4 or is it indicative of something else?
I looked around online and through documentation without much in the way of luck and figured I'd ask here to clarify my understanding.