?? test5_1.txt
字號:
/*compute.c源程序的代碼*/
extern int somegrobal;
int computer(void){
return 5*somegrobal;
}
/*源程序init.c的代碼*/
#include <stdio.h>
#include “myprogram.h”
int somegrobal=11;
int main(void){
foo();
return 0;
}
/*源文件io.c的代碼*/
#include <stdio.h>
#include “myprogram.h”
int foo(void){
printf(“The value is:%d.\n”,computer());
return 1;
}
/*頭文件myprogram.h的代碼*/
int computer(void);
int foo(void);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -