Hi,
I would like to know how can we read a constant value before reading the data from a file into the same output what ever the output without altering the file. the example shows two subarray outputs. i want the 99 value to be indicated first in the subarray1 and the 98 value to be displayed first and then the data from the second column to be displayed.
example if we read the data from the file as:
62 78
82 87
92 23
the ouput would we want is:
99 98
62 78
82 87
92 23
Hopefully this example shows that the constant values of 99 and 98 are read first then the data from the file is read.
thank you
KING1