Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Valid istream usage? Trying to store an input into 3 different strings

0 votes
asked Nov 15, 2018 by Arivu Anukanth (220 points)
#include <iomanip>
#include "PhoneNumber.h"

ostream &operator << ( ostream &out, const PhoneNumber & number )
{
 out << "(" << number.areaCode << ")" << number.exchange << " - " << number.line;
 return out;
}

istream &operator >> ( istream &in, PhoneNumber &number )
{
    input.scanf("%d-%d-%d", number.areaCode, number.exchange, number.line)
    return in;
}

Please log in or register to answer this question.

Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...