0257 is an octal, integer constant. Equivalent to decimal 175.
Integers starting with 0 are octal.
For example:
#include
int main()
{
printf ("%d",0257);
return 0;
}
Output: 175