#include <stdio.h>
int main(void)
{
float value = 0.1;
printf("%.20f \n", value); // %.20f´Â ¼Ò¼öÁ¡ ÀÌÇϸ¦ 20ÀÚ¸®·Î Ãâ·ÂÇ϶ó´Â ÀǹÌÀÌ´Ù.
return 0;
}