This commit is contained in:
2024-03-20 11:50:04 -05:00
parent f39848f9b3
commit 6382da6f6c
82 changed files with 10220 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
#include <iostream>
#include "twoDarraysChar.h"
void test2DcharArray() {
char **pp = create2DarrayCharDereference(3, 4);
populateCharReverse(pp, 3, 4);
traverseCharDereference(pp, 3, 4);
traverseCharSingleLoopDereference(pp, 3);
sort(pp, 3, 4);
std::cout << std::endl;
traverseCharSingleLoopDereference(pp, 3);
freeMemoryCharDereference(pp, 3);
}
int main() {
std::cout << "Hello, World!" << std::endl;
test2DcharArray();
return 0;
}