include 的应用练习

简介: include 的应用练习。

include 的应用练习。

程序分析:无。
程序源代码:
test.h 文件代码如下:

define LAG >

define SMA <

define EQ ==

主文件代码:

include "test.h"

include

int main()
{
int i=10;
int j=20;
if(i LAG j)
printf("%d 大于 %d \n",i,j);
else if(i EQ j)
printf("%d 等于 %d \n",i,j);
else if(i SMA j)
printf("%d 小于 %d \n",i,j);
else
printf("没有值。\n");
return 0;
}
以上实例输出结果为:

10 小于 20

目录
相关文章
|
7月前
|
编译器 C语言
#include
#include
135 0
|
2月前
|
编译器 C++
#include<> 与#include ""的区别
在C++中,`#include &lt;&gt;` 和 `#include &quot;&quot;` 都用于包含头文件,但使用场景不同。`#include &lt;&gt;` 用于包含系统标准库头文件,编译器会在标准库路径中查找;而 `#include &quot;&quot;` 用于包含用户自定义的头文件,编译器会优先在当前项目目录中查找。
|
2月前
|
编译器 C语言
宏定义include"stdio.h"可加可不加?
宏定义include"stdio.h"可加可不加?
15 0
|
6月前
#include的应用练习
【6月更文挑战第22天】#include的应用练习。
41 2
|
7月前
|
测试技术
常用字符串函数 #include<string.h>与#include<stdio.h>
常用字符串函数 #include<string.h>与#include<stdio.h>
81 1
|
7月前
|
存储
include函数
【2月更文挑战第15天】include函数。
82 2
|
7月前
#include 的应用练习
#include 的应用练习。
55 3
|
C++
万能头文件#include<bits/stdc++.h>
#include<bits/stdc++.h>这个头文件的含义
374 1
|
编译器 C++
解决iostream.h在vc2008下不能被include
解决iostream.h在vc2008下不能被include
93 0