#include<stdio.h>
int main(void)
{
float val = (4 / 14) ;
printf("%f\n",val);
}
I don't know what the problem is but it returns 0.00000 instead of 0.285714...
#include<stdio.h>
int main(void)
{
float val = (4 / 14) ;
printf("%f\n",val);
}
I don't know what the problem is but it returns 0.00000 instead of 0.285714...