This question already has answers here:
Closed 8 months ago.
Can you explain it? Why it given 56 value as output?
#include <stdio.h>
#include <conio.h>
void main()
{
int x = 070;
printf("%d", x);
getch();
}