#include <stdio.h> 
#include <conio.h>

#define  VAL  40

#ifdef   VAL
	#undef  VAL          
#endif

#define VAL 50      

int main () 
{
	clrscr();

	printf( "\n Value = %d",  VAL );   

	getch();
	return 0;	
}

输出

Value = 50

  

相关文章:

  • 2021-08-08
  • 2021-08-11
  • 2021-06-02
  • 2021-10-02
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-16
  • 2021-09-05
  • 2021-05-21
  • 2022-12-23
  • 2021-08-05
  • 2021-08-03
  • 2022-12-23
相关资源
相似解决方案