반응형
remquo, remquof, remquol
헤더 파일
[언어 자료구조 알고리즘/C11 표준 라이브러리 함수] - math.h
double remquo(double x, double y, int *quo); 나누기
float remquof(float x, float y, int *quo); 나누기
long double remquol(long double x, long double y,int *quo); 나누기
입력 매개 변수 리스트
x 피젯수
y 젯수
quo 몫을 저장할 메모리 주소
반환 값
x/y 연산의 나머지
사용 예
//C언어 표준 라이브러리 함수 가이드
//double remquo(double x, double y, int *quo); 나누기
//float remquof(float x, float y, int *quo); 나누기
//long double remquol(long double x, long double y,int *quo); 나누기
#include <math.h>
#include <stdio.h>
int main(void)
{
int value;
printf("%f\n", remquo(2.942, 1.4,&value));
printf("%d\n",value);
return 0;
}
출력
0.142000
2
사용한 함수
반응형
'언어 자료구조 알고리즘 > C11 표준 라이브러리 함수' 카테고리의 다른 글
fdim, fdimf, fdiml (0) | 2016.05.10 |
---|---|
nexttoward, nexttowardf, nexttowardl (0) | 2016.05.10 |
nextafter, nextafterf, nextafterl (0) | 2016.05.10 |
nan, nanf, nanl (0) | 2016.05.10 |
copysign, copysignf, copysignl (0) | 2016.05.10 |
trunc, truncf, truncl (0) | 2016.05.10 |
lround, lroundf, lroundl, llround, llroundf, llroundl (0) | 2016.05.10 |
round, roundf, roundl (0) | 2016.05.10 |
lrint, lrintf, lrintl, llrint, llrintf, llrintl (0) | 2016.05.10 |
nearbyint, nearbyintf, nearbyintl (0) | 2016.05.10 |