Please Help

#include
using namespace std;

const int SIZE 4;

void printArray(int list[], int arraySize);
void reverse(const int list[], int newList[], int size)
{
for (int i = 0, j = size - 1; i < size; i++, j--)
{
newList[j] = list*;*

  • }*
    }
    void p(const int list[], int arraySize)
    {
  • list[0] = 100;*
    }
    int main()
    {
  • SIZE = 4;*
  • int newList;*
  • int numbers[] = {1, 4, 3, 6, 8};*
  • p(numbers, 5);*
  • printArray(numbers, 5);*
  • reverse(list, newList, SIZE);*
  • printArray(newList, SIZE);*
  • return 0;*
    }
    void printArray(int list[], int arraySize)
    {
  • for (int i = 0; i < arraySize; i++)*
  • {*
    _ cout << list << " ";_
    * }*
    }
SIZE = 4;

SIZE is declared const and thus cannot be re-assign a vale.

And this code is not arduino code. What are you doing over here?