hi ..
if anyone cn plz tell me wht will be the output of following code n how dis output is generated ...
float i=10;
printf("i++/i %f\n",i++/i);
printf("%f \n",i);
i=10;
printf("i/++i %f \n",i/++i);
printf("%f \n",i);
i=10;
printf("i++/++i %f \n",i++/++i);
printf("%f \n",i);
i=10;
printf("++i/i %f \n",++i/i);
printf("%f \n",i);