If by mistake,I define a char array with no \\0 as its last character, what happens then?
\\0
I\'m asking this because I noticed that if I try to iterate th
This would happen if, by coincidence, the byte at *(str + 5) is 0 (as a number, not ASCII)
*(str + 5)
0