Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- graph
- BOJ
- 따라하며 배우는 C언어
- greedy
- php
- programmers
- Math
- server
- dfs
- web
- C
- 따라하면서 배우는 C언어
- 생활코딩
- 정수론
- Cleancode
- 인프런
- sorting
- BASIC
- 따배씨
- 백준
- String
- udemy
- BFS
- C언어
- Algorithm
- Python
- JavaScript
- 종만북
- Algospot
- DP
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 16.13 표준 수학 라이브러리 본문
따배씨 - 따라하며 배우는 C언어
16강 전처리기와 라이브러리
16.13 표준 수학 라이브러리
#include <stdio.h>
#include <math.h>
int main()
{
printf("%f\n", cos(3.141592));
double c = 5.0, b = 4.0, a;
a = sqrt(c * c - b * b);
printf("a = %f\n", a);
float cf = 5.0f, bf = 4.0f, af;
af = sqrtf(cf * cf - bf * bf);
printf("af = %f\n", af);
return 0;
}
#include <stdio.h>
#include <tgmath.h> // type generic macros
#define SQRT(X) _Generic((X),\
long double: sqrtl, \
default: sqrt, \
float: sqrtf)(X)
int main()
{
double t1 = SQRT(2.0f);
double t2 = SQRT(2.0);
if (t1 == t2)
printf("Identical\n");
else
printf("Not identical\n");
// Not identical
/*
tgmath.h Library
*/
double a1 = sqrt(2.0f);
double a2 = sqrt(2.0);
if (a1 == a2)
printf("Identical\n");
else
printf("Not identical\n");
// Not identical
return 0;
}
- math 라이브러리와 tgmath 라이브러리의 sqrt 정밀도 차이가 발생
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 16.15 assert 라이브러리 (0) | 2021.10.19 |
---|---|
[따배씨] 16.14 표준 유틸리티 Utilities 라이브러리 (0) | 2021.10.19 |
[따배씨] 16.12 라이브러리 (0) | 2021.10.04 |
[따배씨] 16.11 inline 함수 (0) | 2021.09.07 |
[따배씨] 16.10 _Generic 표현식 (0) | 2021.09.07 |
Comments