‘변수명’ 작성 시, 알아보기 좋고 의미 있는 단어로 하기
-> 그래야 나중에 안 헷갈림
https://www.tutorialspoint.com/cprogramming/c_data_types.htm
[ C – Data Types ]
The following table provide the details of standard floating-point types with storage sizes and value ranges and their precision −
Precision
float => 6 decimal places (실수 1개 기준 - 소수점 여섯째 자리까지 정확)
double => 15 decimal places(실수 1개 기준 - 소수점 열 다섯째 자리까지 정확)
※ 단, for 문으로 반복하는 등 일종의 조작(operation)을 더할 경우, 정확성이 감소할 수 있다.
※ 정확도 면에서, float보다 double이 훨씬 높다.