void strcpy(char *x, char *y) { while(*x++ = *y++); } In this example, why does the loop terminate? Is it because the null terminator counted as a false?
If anyone is still not seeing them, do a hard refresh (Ctrl+F5).
When you say CPython, do you mean Cython? I've only recently learned what "Python" really is myself, and it's easy to miss the difference between these two: http://en.wikipedia.org/wiki/CPython…
void strcpy(char *x, char *y) { while(*x++ = *y++); } In this example, why does the loop terminate? Is it because the null terminator counted as a false?
If anyone is still not seeing them, do a hard refresh (Ctrl+F5).
When you say CPython, do you mean Cython? I've only recently learned what "Python" really is myself, and it's easy to miss the difference between these two: http://en.wikipedia.org/wiki/CPython…