// this showcases floating point innaccuracy due to needing to represent them in binary
voidmain(){
floatye=6.28;
printf("%.4f\n",ye);
printf("%.8f\n",ye);
printf("%.12f\n",ye);
}
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.