Can anyone help me with the exercise below?
1) Write a function called update, which has no return (void), which will have four input parameters: (a) a pointer / reference to a DATA type structure (see below), (b) day, (c) an integer called month, and (d) an integer called year. This function should update the day, month, and year fields of the structure referenced by the first parameter of the function.
/* Estrutura DATA */
typedef struct
{
int dia;
int mes;
int ano;
} DATA;
/* Assinatura da função atualizar */
void atualizar(DATA* pontData, int dia, int mes, int ano) {