欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

关于C语言程序条件编译的简单使用方法

程序员文章站 2024-01-29 23:16:04
#include #include #define Mode //如果定义了Mode,那么就执行这个函数 #ifdef Mode void print_h(voi...
#include 
#include 
#define Mode
//如果定义了Mode,那么就执行这个函数
#ifdef Mode
void print_h(void)
{
	printf("world\n") ;
} 
#else  //如果没有定义Mode,那么就执行下面这个函数
void print_h(void)
{
	printf("hello world\n") ; 
}
#endif

int main(void)
{
	print_h();  
	return 0 ;
}