I hereby claim:
- I am kanzash on github.
- I am kanzash (https://keybase.io/kanzash) on keybase.
- I have a public key ASDNZkobhkW3OTb883ejZJN6buo1Vs_eWH36XXwqrLR70Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <ctype.h> | |
| #define ROW 50 | |
| #define COL 900 | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <ctype.h> | |
| int main() | |
| { |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| void freeArray(int **array, int rows, int cols) { | |
| int i = 0; | |
| int j = 0; | |
| for (i=0; i<rows; i++) { |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int **createArray(int rows, int cols){ | |
| int **arrayPtr; | |
| int i = 0; | |
| arrayPtr = malloc( sizeof(int *) * rows); |