This is a simple C program for unconventional representation of array elements.
#includeusing namespace std; int main() { int array[5] = {7,7,7, 6, 6}; for (int i = 0; i < 5; i++) cout<<*(array+i); return 0; }
7 7 7 6 6
The above is the detailed content of Unconventional representation of array elements in C/C++. For more information, please follow other related articles on the PHP Chinese website!