test.c
来自「嵌入式Linux C应用程序设计配套光盘,含有许多嵌入式Linux C应用程序设」· C语言 代码 · 共 23 行
C
23 行
#include <stdio.h>
#include <stdlib.h>
int x = 0;
int y = 5;
int fun1()
{
extern p, q;
printf("p is %d, q is %d\n", p, q);
return 0;
}
int p = 8;
int q = 10;
int main()
{
fun1();
printf("x is %d, y is %d\n", x, y);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?