C++ Structures

This commit is contained in:
2024-03-22 11:48:19 -05:00
parent 6382da6f6c
commit da482d8c6d
122 changed files with 13650 additions and 2 deletions

View 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