Quantcast
Channel: Go4Expert
Viewing all articles
Browse latest Browse all 1987

Looking for a online tool/application that can read this code

$
0
0
Hi Guys im looking for a tool/application that can read this code::

Code:
void create()
{
    // file pointer
    fstream fout;

    // opens an existing csv file or creates a new file.
    fout.open("reportcard.csv", ios::eek:ut | ios::app);

 

    cout << "Enter the details of 5 students:"
         << " roll name maths phy chem bio";
    << endl;


    int i, roll, phy, chem, math, bio;

    string name;

    // Read the input
    for (i = 0; i < 5; i++) {

        cin >> roll...
Looking for a online tool/application that can read this code

Viewing all articles
Browse latest Browse all 1987

Trending Articles