C-05-Q149mediumsingle_mcq
In C, the expression k++ is —
In C, the expression k++ is —
- aa post-increment (the value is used first, then increased)
- ba pre-increment (the value is increased first, then used)
- ca decrement operator
- dexactly the same as ++k