What will be the output of the following program?
#include stdio.h
int main (void)
{
int shifty;
shifty = 0570;
shifty = shifty 4;
shifty = shifty 6;
printf("the value of shifty is %o",shifty);
}

Posted on by