这个里面有严蔚敏老师c数据结构经典900例子

源代码在线查看: int_frac.c

软件大小: 71 K
上传用户: cdcgl
关键词: 900 数据结构
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				#include 
				
				void main (void)
				 {
				   double value = 1.2345;
				   double int_part;
				   double fraction;
				
				   fraction = modf(value, &int_part);
				
				   printf("Value %f Integer part %f Fraction %f\n",
				     value, int_part, fraction);
				 }
							

相关资源