tlongdouble.c

来自「su 的源代码库」· C语言 代码 · 共 35 行

C
35
字号
/* Copyright (c) Colorado School of Mines, 2006.*//* All rights reserved.                       */#include	"sftest.h"#if _typ_long_double#include	<float.h>#endifMAIN(){#if _typ_long_double	long double	ldval, ldmax;	char		*s, *str;	ldmax = LDBL_MAX;	if(!(s = sfprints("%Le",ldmax)) )		terror("sfprints failed1\n");	if(!(str = malloc(strlen(s)+1)) )		terror("Malloc failed\n");	strcpy(str,s);	if(sfsscanf(str,"%Le",&ldval) != 1)		terror("sfsscanf failed\n");	if(!(s = sfprints("%Le",ldval)) )		terror("sfprints failed2\n");	if(strcmp(s,str) != 0)		terror("Bad conversion, expecting %s and getting %s\n",str,s);#endif	TSTEXIT(0);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?