Predict the output of the following code in case of errors occurred comment out to fix it.
#include stdio.h
void main()
{
int x=15,y=5,z;
int *px=&x,*py=&y;
z=*px/*py;
printf("%d",z);
}

Posted on by