Files
G4G0-2/Data Structures/Week 3/Lecture 5 - Linear List.md
2025-01-30 09:27:31 +00:00

5 lines
122 B
Markdown
Executable File

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