Files
G4G0-2/Data Structures/Week 3/Lecture 5 - Linear List.md
2024-10-16 09:12:37 +01:00

5 lines
122 B
Markdown

y++, use then increment (post)
++y, increment then use (pre)
y--, use then decrement (post)
--y, decrement then use (pre)