天天看點

10、一個常見語句的執行順序

while ((*from++ = * to++) == '\0')

這一句的執行順序:

*from = *to

from++

to ++

判斷 *from == '\0' ?

優先級: