Thank you all. Below is the solution(in CPP) to remove a eof from file. By the way, the idea is not make other ppl's program crash. It is make it better to recover from anything. Thanks
// DeEOF.cpp : Reads in a file and outputs the contents, omitting
// all EOF characters.
//
// Parameter: <inputfile> - the file containing the undesired EOFs.
//
//
// Written by Brendan Cunnie
//
#include "stdafx.h"
#include <string.h>
#include <fstream.h>
#include <iostream.h>
#include <ios.h>
#define ASCII_EOF 26
int main(int argc, char* argv[])
{
bool fDisplayHelp = false;
if (argc == 1) fDisplayHelp = true;
if ( (argc>1) &&
( (strcmp(argv[1],"-?")==0) || (strcmp(argv[1],"-h")=
+=0)) ) {
fDisplayHelp = true;
}
if (fDisplayHelp) {
cout << "Takes a file and outputs it, strippin
+g all EOF characters." << endl;
cout << "Usage:" << endl;
cout << " DeEOF <inputfile>" << endl;
return (0);
}
ifstream ifile ( argv[1], ifstream::binary);
char ch;
for (ch = ifile.get(); !ifile.eof(); ch = ifile.get()) {
if (ch != ASCII_EOF) {
cout << ch << flush;
}
}
return 0;
}
Edited by Chady -- code tags
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.