数值计算工具库,C语言编写的,可以直接调用.

源代码在线查看: bool.cpp

软件大小: 523 K
上传用户: qinghuatong
关键词: 数值 计算工具 编写 语言
下载地址: 免注册下载 普通下载 VIP

相关代码

				// bool treated as distinct type
				// BZ_BOOL
				
				int foo(int x)
				{
				    return 1;
				}
				
				int foo(char x)
				{
				    return 1;
				}
				
				int foo(bool x)
				{
				    return 0;
				}
				
				int main()    
				{
				    bool c = true;
				    return foo(c);
				}
				
							

相关资源