📄 10_06.c
字号:
/*【例10-6】宏的作用范围。*/
#include <stdio.h>
#define A "This is the first macro"
void f1( )
{
printf("A");
printf("\n");
}
#define B "This is the second macro"
void f2( )
{
printf(B);
}
#undef B
int main(void)
{
f1( );
f2( );
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -