#include #include using namespace std; //testArrayImplicit1.cpp // int main() { // char implicit char ch1[]={ 'a','b','c','d'}; // string implicit array string str1[]={"A","B","C","D"}; //integer implicit array int n1[] = {1,2,3,4,5}; cout<< "\n size of ch1 " << sizeof(ch1); 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]; return 0; }