diferencia entre & array [0] y & array cuando se pasa a una función C

¿Hay alguna diferencia entre & array [0] y & array cuando se pasa a una función C. Esta matriz es una matriz nula * que actualmente toma un entero como datos.

Añadido el código de prueba

#include <iostream>
#include <conio.h>

using namespace std;

int read_buffer[10] = {0,0,0,0,0,0,0,0,0,0};

int write_buffer[10] = {0,1,2,3,4,5,6,7,8,9};

void WriteBlock(void* SrcPtr)
{
  //WriteBlock will use SrcPtr and store the data to a common memory block which ReadBlock will access.
 }

void ReadBlock(void* DstPtr)
{
   //ReadBlock function will fetch data from readBuffer and put the data back into the *DstPtr.
}

void main()
{
 WriteBlock((int*)&write_buffer);
 //Is there a difference between these two below calls.
  ReadBlock(&read_buffer[0]);
  ReadBlock(&read_buffer);
 }

Respuestas a la pregunta(5)

Su respuesta a la pregunta