Asked by Murtadha Abdulridha on May 11, 2024

verifed

Verified

strng[++i] shows an example of the use of the postfix increment operator.

Postfix Increment Operator

The operator (++) used in programming languages like C and C++ to increase the value of a variable by one after its current value is used.

  • Understand the use of operators with strings and characters.
verifed

Verified Answer

MN
martin ngangaMay 17, 2024
Final Answer :
False
Explanation :
The expression `strng[++i]` uses the prefix increment operator (++i), which increments `i` before its value is used to access an element of `strng`.