C-05-Q150mediumsingle_mcq
In C, the expression ++k is —
In C, the expression ++k is —
- aa pre-increment (the value is increased first, then used)
- ba post-increment (the value is used first, then increased)
- ca decrement operator
- dan operator that changes nothing