#include<stdio.h>
int main()
{
int yo[4][4];
int b;
int c;
for(b=0;b<12;b++)
{
c=0;
while(c<5)
{
yo[b][c]=(b*c);
printf("a[%d][%d] = %d\n",b,c,(yo[b][c]));
c++;
}
}
getchar();
return(0);
}
The above code starts with b=7 why!!!!!!
compile the programme and u will understand my problem ..
plz
helpp......
help...
Thnx in advance........