9 lines
151 B
C
9 lines
151 B
C
|
#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
|