In C language octal number can be written by placing 0 before number e.g.
0
int i = 012; // Equals 10 in decimal.
I found the e
You can't use literals, but you can parse an octal number: Convert.ToInt32("12", 8).
Convert.ToInt32("12", 8)