Test conversion from Matrix class

What will be an ideal response?

```
cout << endl << "Enter the Matrix input filename => ";
cin >> infilename2;
ifstream infile2(infilename2.c_str(), ios::in);
infile2 >> m1;
cout << endl << "Matrix input:" << endl << endl << m1 << endl;
SparseMatrix sm2 (m1);
cout << "Sparse Matrix conversion:" << endl << endl << sm2 << endl;
outfile << sm2 << endl;

return 0;
}

```

Computer Science & Information Technology

You might also like to view...

When you turn on the Format Painter, the mouse pointer changes to resemble a ________

A) white arrow B) vertical line C) paintbrush D) black arrow

Computer Science & Information Technology

Match the following Word terms to their meanings:

I. thumbnails II. padlock III. F3 IV. Ctrl+G V. only one scroll bar A. Navigation Pane B. bookmarks C. Quick Parts D. synchronous scrolling E. subdocuments

Computer Science & Information Technology