このコードでの *str[] の使用がわかりません。このコードで使用されている str[][] とは違いますか?
#include<iostream.h>
#include<fstream.h>
#include<conio.h>
int main()
{
char a[10], b[10], c, buffer[50], str[1][9], s[10];
//decalaring char a, b, buffer, str[][], s//
int y;
ofstream out;
out.open("output.cpp");
out<<("\nOPCODE\tMACHINE_CODE\n");
do
{
y = 0;
cout<<"ENTER THE OPCODE&MACHINE CODE";
cin>>a>>b;
out<<"\n"<<a<<"\t"<<b<<"\t"<<"\n";
cout<<"PRESS 1 TO CONTINUE";
cin>>y;
}while(y == 1);
out.close();
ifstream in;
in.open("output.cpp");
while(in)
{
c = in.get();
cout<<c;
}
in.close();
cout<<"ENTER THE OPCODE TO SEARCH";
cin>>s;
in.open("output.cpp");
in.getline(buffer,50);
while(in)
{
*str[0] = '\0'; // i dont understand the use of *str[] here, is it diff from str[][]?
*str[1] = '\0';
in>>str[0];
in>>str[1];
if(strcmpi(str[0], s) == 0)
{
cout<<"\n"<<str[0]<<"\t"<<str[1];
}
}
return 0;
}