Assuming your input file is in the form of a whitespace separated 10x10 table of ints then reading it in could be as straightforward as :
for(n=0; n<10; n++)// col. number
{
for(m=0; m<10; m++)// rows number
{
inClientFile >> array[m][n];
}
}
in your version:
for(n=0; n<10; n++)// col. number
{
for(m=0; m<10; m++)// rows number
{
array[m][n]=num;
}
}
the value of num never changes and all values of array[m][n] will be the same.
I would note in passing that, generally, rows are read in one column at a time
for() //controls rows
for() //controls columns rather than columns being read in one row at a time
for() //controls columns
for() //controls rows
but you will want to confirm you are in row major as opposed to column major mode as it is possible to do it your way. It just seems clumsier under usual circumstances.
NB: To have you code appear indented on this board like the way you write it (I hope), place code tags before and after the code section (see the FAQ if you're not sure how to do it).