how to loop in C

Newbie Member
23Jan2008,07:27   #1
rico_dee2000's Avatar
Could anyone help me how to loop this (using for loop)?
please help!!!!!!!!
Thanks.
please help me by giving the axact code...


D3CT01_WK.fmtemp[1].ctl1[0] = data->NSTblEx1_1_0;
D3CT01_WK.fmtemp[1].ctl1[1] = data->NSTblEx1_1_1;
D3CT01_WK.fmtemp[1].ctl1[2] = data->NSTblEx1_1_2;
D3CT01_WK.fmtemp[2].ctl1[0] = data->NSTblEx1_2_0;
D3CT01_WK.fmtemp[2].ctl1[1] = data->NSTblEx1_2_1;
D3CT01_WK.fmtemp[2].ctl1[2] = data->NSTblEx1_2_2;
D3CT01_WK.fmtemp[3].ctl1[0] = data->NSTblEx1_3_0;
D3CT01_WK.fmtemp[3].ctl1[1] = data->NSTblEx1_3_1;
D3CT01_WK.fmtemp[3].ctl1[2] = data->NSTblEx1_3_2;
D3CT01_WK.fmtemp[4].ctl1[0] = data->NSTblEx1_4_0;
D3CT01_WK.fmtemp[4].ctl1[1] = data->NSTblEx1_4_1;
D3CT01_WK.fmtemp[4].ctl1[2] = data->NSTblEx1_4_2;
Team Leader
23Jan2008,12:10   #2
pradeep's Avatar
You'll need to try at least then we can try to help you out if you are stuck somewhere, do post your code for reference.
Tip: Use nested loops.
TechCake
23Jan2008,14:01   #3
asadullah.ansari's Avatar
Code:
for(i=1;i<=4;++i)
{
  for(j=0 ;j<=2;++j)
  {
      D3CT01_WK.fmtemp[i].ctl1[j] = data->NSTblEx[1][i][j]; 
   }
}

Last edited by asadullah.ansari; 23Jan2008 at 18:03..
TechCake
23Jan2008,14:02   #4
asadullah.ansari's Avatar
Can you tell what is exactly problem??
Go4Expert Founder
23Jan2008,15:33   #5
shabbir's Avatar
asadullah.ansari, please use code block when you have code snippets in the posts