这是我在 C 中编译的代码。目前我有一个全局变量“代码”,它是一个结构数组(结构指令)。我一直在尝试将其作为 main 中的局部变量并将其作为参数传递。我也相信这意味着我需要读取文件返回一个结构指令*。如果有人可以解释或告诉我如何正确使用“代码”作为局部变量,我将不胜感激。我也对是什么使局部变量比全局变量更好或更有效感兴趣。谢谢!
#include<stdio.h>
#include <stdlib.h>
typedef struct instruction{
int op; //opcode
int l; // L
int m; // M
} instr;
FILE * ifp; //input file pointer
FILE * ofp; //output file pointer
instr code[501];
void read_file(instr code[]);
char* lookup_OP(int OP);
void print_program(instr code[]);
void print_input_list(instr code[]);
int main(){
read_file(code);
print_input_list(code);//used for debugging
print_program(code);
}
void read_file(instr code[]){
int i = 0;
ifp = fopen("input.txt", "r");
while(!feof(ifp)){
fscanf(ifp,"%d%d%d",&code[i].op, &code[i].l, &code[i].m);
i++;
}
code[i].op = -1; //identifies the end of the code in the array
fclose(ifp);
}