Hi I am brushing back up on char arrays, in the c++ primer it says that is you declare and char array like this, the compiler adds a null terminate to the end:
char cstr[]{"test"};
should be equal to:
char cstr[]{"'t','e','s','t','/0'};
However when I do a for loop like this, it results in a infinite loop never finding the null terminate character: