Accidentally prefixed a 0 in front of a variable, and as it turns out prefixing a integer value with 0 means it is an Octal.
Try this:
1 | #include <stdio.h> |
2 |
3 | int a = 0134; |
4 |
5 | int main() { |
6 | printf ( "%d" , a); |
7 |
8 | return 0; |
9 | } |
The result is 92
This is the same across C/C++/Java