I got a problem using pointer.
I got two table in two different file.
First one:
x y z
7 6 5
1 3 4
2 1 4
the other one:
node1 node2 node3
1 2 3
2 3 1
3 1 2
My problem is, how do i point table two to take the value of table one.
let say table two says node1 = 1, node2 = 2 and node3 = 3
so the out put will be:
(7,6,5)(1,3,4)( 2,1,4)
it means that the number in table two will refer to line in table one.
Thanx.
I got two table in two different file.
First one:
x y z
7 6 5
1 3 4
2 1 4
the other one:
node1 node2 node3
1 2 3
2 3 1
3 1 2
My problem is, how do i point table two to take the value of table one.
let say table two says node1 = 1, node2 = 2 and node3 = 3
so the out put will be:
(7,6,5)(1,3,4)( 2,1,4)
it means that the number in table two will refer to line in table one.
Thanx.
Comment