please help me. my program is working but not displaying the table but i followed the syntax for the two-dimensional array. how come the program does not display the table? here is the code. :D
#include<stdio.h>
#include<conio.h>
main()
{
int x[5][5],a,j;
for (a=0;a<=5;a++)
for (j=0;j<5;j++)
x[a][j]=(a*4)+j+1;
for (a=0;a<=5;a++)
for (j=0;j<5;j++)
printf("%d\n",x[a][j]);
getch();
}