C-05-Q174mediumsingle_mcq
What is the difference between k++ and ++k?
What is the difference between k++ and ++k?
- aThere is no difference
- bk++ uses the value then increments; ++k increments then uses the value
- ck++ decrements while ++k increments
- dBoth decrement the value