📄 ex4-9.c
字号:
char data *c_ptr; /* memory-specific char ptr */
int xdata *i_ptr; /* memory-specific int ptr */
long code *l_ptr; /* memory-specific long ptr */
long code powers_of_ten [] =
{
1L,
10L,
100L,
1000L,
10000L,
100000L,
1000000L,
10000000L,
100000000L
};
void main (void)
{
1 char data strbuf [10];
1 int xdata ringbuf [1000];
1
1 c_ptr = &strbuf [0];
1 i_ptr = &ringbuf [0];
1 l_ptr = &powers_of_ten [0];
1 }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -