📄 ex6-3.c
字号:
#include <stdio.h>
#define PR printf
#define NL "\n"
#define D " %d"
#define D1 D NL
#define D2 D D NL
#define D3 D D D NL
#define D4 D D D D NL
#define S " %s"
main() {
unsigned int a,b,c,d;
unsigned char string[]="MICROCONTROLLER";
a=1; b=2; c=3; d=4;
PR(D1, a);
PR(D2, a, b);
PR(D3, a, b, c);
PR(D4, a, b, c, d);
PR(S, string);PR(NL);
PR(" %s",__FILE__);PR(NL);
PR(" %s",__TIME__);PR(NL);
PR(" %s",__DATE__);PR(NL);
PR(" %bd",__STDC__);PR(NL); ;
PR(" %d",__C51__);PR(NL); ;
PR(" %bd",__MODEL__);PR(NL); ;
PR(" %bd",__LINE__);PR(NL); ;
while(1);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -