If you read or follow a C++ book you'll see that * is the dereference operator which allows you to access or use the value stored at the address pointed to by the pointer.
Anyway, if you have an array int a[index];, then to set values of its individual elements, you'll need to declare an integer pointer int *int_Pointer;. Then do this: