What is the output of the following code?
#include stdio.h
int main()
{
float x = 21.0;
x %= 3.0;
printf("%f",x);

return 0;
}

Posted on by