该程序的重点是从文件中读取指令列表。\t
在第一次通过时,我只是在他们面前得到最左边的命令(唯一没有 a 的命令)。我已经设法做到了,但是我遇到的问题是,在我测试我的代码以查看是否正确复制了 char 数组时,我的输出左侧出现了非常奇怪的字符.
这是我正在阅读的原始文件:# Sample Input
LA 1,3
LA 2,1
TOP NOP
ADDR 3,1
ST 3, VAL
CMPR 3,4
JNE TOP
P_INT 1,VAL
P_REGS
HALT
VAL INT 0
然而,我收到的奇怪输出是:
D
D
D
DTOP
DTOP
DTOP
DTOP
DTOP
DTOP
DTOP
DTOP
DVAL
D
D
我只是不确定我是如何得到如此奇怪的输出的。这是我的代码:
#include <string>
#include <iostream>
#include <cstdlib>
#include <string.h>
#include <fstream>
#include <stdio.h>
using namespace std;
int main(int argc, char *argv[])
{
// If no extra file is provided then exit the program with error message
if (argc <= 1)
{
cout << "Correct Usage: " << argv[0] << " <Filename>" << endl;
exit (1);
}
// Array to hold the registers and initialize them all to zero
int registers [] = {0,0,0,0,0,0,0,0};
string memory [16000];
string symTbl [1000][1000];
char line[100], label[9];
char* pch;
// Open the file that was input on the command line
ifstream myFile;
myFile.open(argv[1]);
if (!myFile.is_open())
{
cerr << "Cannot open the file." << endl;
}
int counter = 0;
int i = 0;
while (myFile.good())
{
myFile.getline(line, 100, '\n');
if (line[0] == '#')
{
continue;
}
if ( line[0] != '\t' && line[0]!=' ')
{
pch = strtok(line-1," \t\n");
strcpy(label,pch);
}
cout << label<< endl;
}
return 0;
}
任何帮助将不胜感激。