#include #include using namespace std; //testArrayImplicit2.cpp //Passing Implict array void getString(string str1[], int size); void getIntegers(int n1[], int size); int main() { //string implicit string str1[]={"JAN","FEB","MARCH","APRIL"}; //integer implicit array int n1[] = {1,2,3,4,5}; cout<< "\n size of str1 " << sizeof(str1); cout<< "\n size of n1 " << sizeof(n1); cout<< "\n what is n1[3] "<< n1[3]; cout<< "\n what is n1[16] "<< n1[16]; cout<< "\n what is n1[16] "<< &n1[16] << endl; // defining array length during run time getString(str1,4); getIntegers(n1, 4 ); return 0; } void getString(string str1[], int size ) { cout<<" received " << " size of str1 " << sizeof(str1)<< endl; for(int i =0; i