Predict the output of the following code snippet
int main()
{
int m=-14,n=3;
printf("%d\n",m/n * 10);
n= -n;
printf("%dn",m/n * 10);
}


Posted on by