我有一个多维矩阵,想要将最后一个元素设置为1.(例如po[-1]=1
维度会有所不同,这就是我的问题。using namespace std;
int main(){
std::string writeToFile;
int file;
char buf[128];
int nread;
char pathNameTest[100];
pathNametest[0] = 'f';
pathNametest[0] = '\0';
cout << "Enter a file name without spaces: " endl;
cin >> pathNameTest;
file = open(pathNametest, O_RDONLY);
if(file == -1)
{
cout << "Error"
exit(0);
}
else
{
while(nread= read(file, buf, 10) > 0){
printf("%s",buf);
}
return 0;
}
在这里不起作用。