What is the output of the following code?
int main()
{
float a=20.0;
a = (int)a % 3;
printf("%f", a);
return 0;
}

Posted on by