MCQOPTIONS
Saved Bookmarks
| 1. |
Note:Includes all required header filesusing namespace std;template < typename T >void print_mydata(T find){ cout << find << endl;}int main(){ double p = 17.5; string s("Hi to all"); print_mydata( p ); print_mydata( s ); return 0;} 19.How many bits of memory needed for internal representation of class? |
| A. | 1 |
| B. | 2 |
| C. | 4 |
| D. | No memory needed |
| Answer» D. No memory needed | |