Hi everybody,

im a newbie in C programming and i got project which i need to submit them tomorrow and im really struggling with "while nested loops"..

my problem is i don't know how to make it, so if somebody could help i will be really appreciated...

my problem is i have values which are
a1= 0.1 0.2 0.3 0.4 0.5
a2= 0.5 0.6 0.7 0.8 0.9 1.0

and i need to create two dimensional array by using while loop

to be more clear i need the output to be like this

total area=

0.1/0.5 0.1/0.6 0.1/0.7 0.1/0.8 0.1/0.9 0.1/1.0
0.2/0.5 0.2/0.6 0.2/0.7 0.2/0.8 0.2/0.9 0.2/1.0
0.3/0.5 0.3/0.6 0.3/0.7 0.3/0.8 0.3/0.9 0.3/1.0
0.4/0.5 0.4/0.6 0.4/0.7 0.4/0.8 0.4/0.9 0.4/1.0
0.5/0.5 0.5/0.6 0.5/0.7 0.5/0.8 0.5/0.9 0.5/1.0


so please if anyone who know how to do it please help me, i've trying to make it since a week but my problem is i just don't get the concept of nested while loops...

thank you...