How should these three types of process control be expressed in OC? ?
迷茫2017-05-02 09:32:11
This has nothing to do with OC, it is a pure C concept. Most computer languages also have these three loop controls.
while: while(p) {a}
do-while: do{a} while(p)
for: for(a; p;) {b; a;}