fatma1000
Banned
i have this code
for (ii=0;ii<NX;ii++)
{
for(jj=0;jj<NY;jj++)
{
//sum statments to compute sigma[ii][jj]
fprintf(qqq,"%e\t",sigma[ii][jj])
}
}
but by this code the array qqq will be 1*200 (if NX=10 ,NY=20)
i want this array to be 10*20
so please what can i do?
regards
for (ii=0;ii<NX;ii++)
{
for(jj=0;jj<NY;jj++)
{
//sum statments to compute sigma[ii][jj]
fprintf(qqq,"%e\t",sigma[ii][jj])
}
}
but by this code the array qqq will be 1*200 (if NX=10 ,NY=20)
i want this array to be 10*20
so please what can i do?
regards