What is the proper way to declare a vector of strings named names?

a. vector strings names;
b. vector string;
c. vector names;
d. all of the above

c. vector names;

Computer Science & Information Technology

You might also like to view...

A field containing the AutoNumber data type must be manually incremented for each record entered

Indicate whether the statement is true or false

Computer Science & Information Technology

Assuming that all four of the following functions are defined, which one will be called by the function call square( 23.4 )?

a. template< typename T > T square( T num ) b. template< typename T1, typename T2 > T1 square( T1 num1, T2 num2 ) c. int square( int num ) d. double square( double n

Computer Science & Information Technology