What do I save when I substitute the following code:

Code:
if ( pItemData->nSelCheck )
     iImg = 1;	
else 
     iImg = 0;
with this one:

Code:
iImg = ( pItemData->nSelCheck )? 1: 0;