int with leading zero, why breaks after 07?
in
Programming Questions
•
10 months ago
Why this does not work?
- void setup(){
- int s = 08;
- }
but this does...
- void setup(){
- int s = 07;
- }
??
1