Help me to understand the termination parameter of this C++ for loop
- by typoknig
I do not understand the termination parameter of this for loop. What does it mean? Specifically, what do the ?, -, and : 0 represent?
for( i = 0; i < (sequence ? sequence->total : 0); i++ )