12 lines
332 B
C
12 lines
332 B
C
|
//
|
||
|
// Created by caleb on 3/22/24.
|
||
|
//
|
||
|
|
||
|
#ifndef LAB4_CALEBFONTENOT_POINTERARRAYS_H
|
||
|
#define LAB4_CALEBFONTENOT_POINTERARRAYS_H
|
||
|
|
||
|
int*** create3DArray(int x, int y, int z);
|
||
|
void initialize3DArray(int ***ppp, int x, int y, int z);
|
||
|
void traverse3DArrayOffsets(int ***ppp, int x, int y, int z);
|
||
|
#endif //LAB4_CALEBFONTENOT_POINTERARRAYS_H
|