When a compiler encounters a function parameter for a single-subscripted array of the form int a[], it converts the parameter to:
a. int a
b. int &a
c. int *a
d. No conversion is necessary.
c. int *a
You might also like to view...
In the private section of HashTable, we had a pointer to a function; yet, we did not need to write a destructor for HashTable because:
A. the Array data member takes care of freeing the memory used by the pointer to the function B. pointers to functions free the dynamic memory that they point to automatically upon destruction of the object that contains them C. the function in dynamic memory can still be called after the HashTable object is destroyed, so there is no memory leak D. the pointer to a function does not point to dynamic memory
FTP was designed for
a. text-based electronic mail b. electronic mail with attached files c. network management d. transferring files