함수명 : _status87
헤더 파일 : <float.h>
함수 프로토타입 : unsigned int _status87(void);
기능 : 부동 소수점 프로세서 상태 값을 가져옵니다.
매개변수 : 매개변수 없음
반환 값 : 부동 소수점 프로세서 상태 값을 반환합니다.
프로그램:
#include<stdio.h>#include<float.h>intmain(){floatx;doubley=1.5e-100;printf(Status87beforeerror:%xn, _status87());//현재 상태 출력 x=y;//에러 강제 실행 y=x;printf(Status87aftererror:%xn,_status87());//현재 상태 출력 return0;}
실행 결과:
오류 전 상태87:0오류 후 상태87:3