C++ Structures
This commit is contained in:
11
Assignments/lab4_CalebFontenot/pointerArrays.h
Normal file
11
Assignments/lab4_CalebFontenot/pointerArrays.h
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// 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
|
Reference in New Issue
Block a user