Introduction

int list [] = {4, 5, 7, 83}; compiler sets the length of the array. Character strings in C and C++ implemented as array of char. char name [] = “freddie”; The array name will have 8 elements, because all strings are terminated with null character (zero), which implicitly supplied by the system. ................
................