10 lines
199 B
C++
10 lines
199 B
C++
|
#include <iostream>
|
||
|
using namespace std;
|
||
|
#include "twoDArrays.h"
|
||
|
|
||
|
int main() {
|
||
|
int ** pp = create2DArray1(2, 3);
|
||
|
populateChar(char** pp, int rows, int columns);
|
||
|
traverseChar(pp, 2, 3);
|
||
|
}
|