What is the output of the following code?
int main()
{
int a =(int) 10.345;
float b= (float)a;
printf("%4.1f\n",b);
return 0;
}


Posted on by