#include<iostream> int main() { int array[8] = {1,2,3,4,5,6,7,8}; int i = 0; while (i <= sizeof(array)/sizeof(int)) { std::cout << array[i]; i++; } }