Basic Operators
C
// Increment (By one)
a++; // Postfix - Takes effect after its call
++a; // Prefix - Takes effect before its call
// Decrement (By one)
a--; // Postfix - Takes effect after its call
--a; // Prefix - Takes effect before its call
C++ (Cpp)
// Increment (By one)
a++; // Postfix - Takes effect after its call
++a; // Prefix - Takes effect before its call
// Decrement (By one)
a--; // Postfix - Takes effect after its call
--a; // Prefix - Takes effect before its call
C# (Csharp)
// Increment (By one)
a++; // Postfix - Takes effect after its call
++a; // Prefix - Takes effect before its call
// Decrement (By one)
a--; // Postfix - Takes effect after its call
--a; // Prefix - Takes effect before its call
Java
// Increment (By one)
a++; // Postfix - Takes effect after its call
++a; // Prefix - Takes effect before its call
// Decrement (By one)
a--; // Postfix - Takes effect after its call
--a; // Prefix - Takes effect before its call
Rust
// TODO
Go
// TODO
Javascript
// TODO
Typescript
// TODO
Python
# Increment
# Not Available. You need to use the Addition Operator
a = a + 1
# Decrement
# Not Available. You need to use the Subtraction Operator
a = a - 1