If we want to pass a DataType parameter called item by const reference into a function bar, the function prototype for bar would look like this:
A. bar( DataType & item ) const;
B. bar( DataType const & item );
C. bar( DataType & item const );
D. bar( const DataType & item );
D
Computer Science & Information Technology
You might also like to view...
Multicast addresses all start with the prefix FF00::/8. The next group of characters in the IPv6 multicast address (the second octet) are called what?
What will be an ideal response?
Computer Science & Information Technology
A __________ is a file of indexes to the other files it points to.
a. file table b. directory c. page table d. segment table
Computer Science & Information Technology