I am new to C...
#define block_size 16 // data block size
typedef int int32;
typedef int32 block[block_size];
block MX_INP[6] ;
block *IN_PNTR = MX_INP ;
for(l=0;l<6;l++ )
{
for(i=0;i<16;i+ +)
fscanf(FL_InPnt r, "%x", &IN_FL[i]);
for(i=0; i<16; i++)
{
MX_INP[l][i] = IN_FL[i];
}
l++;
here..does MX_INP[l][i] represents 1st element of 1st element of array?
Please Help
Thanks in advance
#define block_size 16 // data block size
typedef int int32;
typedef int32 block[block_size];
block MX_INP[6] ;
block *IN_PNTR = MX_INP ;
for(l=0;l<6;l++ )
{
for(i=0;i<16;i+ +)
fscanf(FL_InPnt r, "%x", &IN_FL[i]);
for(i=0; i<16; i++)
{
MX_INP[l][i] = IN_FL[i];
}
l++;
here..does MX_INP[l][i] represents 1st element of 1st element of array?
Please Help
Thanks in advance
Comment