i need some help on this. I have the array numbers stored already but the array dosent display on the screen. Why? here is the code
# include <stdio.h>
# include "simpio.h"
# include "genlib.h"
# include "strlib.h"
# include <math.h>
# define size 3
main()
{
int intArray[size][size];
intArray[0][0]=GetInteger();
intArray[0][1]=GetInteger();
intArray[0][2]=GetInteger();
intArray[1][0]=GetInteger();
intArray[1][1]=GetInteger();
intArray[1][2]=GetInteger();
intArray[2][0]=GetInteger();
intArray[2][1]=GetInteger();
intArray[2][2]=GetInteger();
void displayMatrix (int intArray[3][3]);
getchar();
}