Suppose you have a programmer-defined data type Data and want to overload the << operator to output your data type to the screen in the form cout << dataToPrint; and allow cascaded function calls. The first line of the function definition would be:

a. ostream& operator<<(ostream& output, const Data& dataToPrint)
b. ostream operator<<(ostream& output, const Data& dataToPrint)
c. ostream& operator<<(const Data& dataToPrint, ostream& output)
d. ostream operator<<(const Data& dataToPrint, ostream& output)


a. ostream& operator<<(ostream& output, const Data& dataToPrint)

Computer Science & Information Technology

You might also like to view...

Which layout manager is the default for JFrame?

a. FlowLayout b. BorderLayout c. GridLayout d. None of the above

Computer Science & Information Technology

Which of the followings is the correct CSS syntax?

A. body {color:#000000}; B. body {color=#000000}; C. body: color=#000000; D. {body: color:#000000};

Computer Science & Information Technology

Define: the Rescorla

What will be an ideal response?

Computer Science & Information Technology

Describe the advantages of using  mobile computing middleware in developing cross platform MobileApps.

What will be an ideal response?

Computer Science & Information Technology