#ifndef ARRAYS_H_ #define ARRAYS_H_ #define _ARR_SIZE 10 void fill_array(int* arr); void print_array(int* arr); void print_pointer(int index); #endif