Discussion :: C Fundamentals
- Find the output of the following program. void main() { int i=01289; printf("%d", i); }
Answer : Option E
Explanation :
The prefix 0 in an integer value indicates octal value. In octal value use of 8 and 9 is not allowed and hence the error.
Be The First To Comment