?? fp10.c
字號:
/***
* fp10.c - Set default FP precision to 64 bits (10-byte 'long double')
*
* Copyright (c) 1993-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
*
*******************************************************************************/
#include <float.h>
void _setdefaultprecision(void);
/*
* Routine to set default FP precision to 64 bits, used to override
* standard 53-bit precision version in fpinit.c.
*/
void _setdefaultprecision()
{
_controlfp(_PC_64, _MCW_PC);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -