C2065 – Undecleared Identifier [closed]

        if (quotation == "yes")
        // open a file in write mode.
   ofstream outfile;

You need braces around the if block

if (quotation == "yes")
{
    // open a file in write mode.
    ofstream outfile;
 ...
}

Leave a Comment