In article < .com>,
says...
> Can anyone please help me in writing the code in C++ :
>
> I want a read a file line by line,remove the lines which have length of
> a particular field in a line exceeding 63 characters After removing the
> line the corresponding blank spaces generated after removal of the
> line also needs to be removed.
> .
> I am in urgent need for this solution.Kindly help how to go about it.
You can't delete data from the middle of the file, so you have to copy
data from the existing file to a new file, skipping over the parts you
don't want.
--
Later,
Jerry.
The universe is a figment of its own imagination.