/* find the size of an array of integers */ #include using namespace std; int main(int manyArgs, char *args[] ) { int x[] = {1,2,3,5,8}; // sizeof(x) will give the size in bytes of the array. Because it // is an array of integers (int = 4 Bytes) you just divide it by 4 // and you will have to numbem of elements inside the array int sizeX = sizeof(x)/4; for(int i=0; i< sizeX; i++) cout<