Protuberance 67 Junior Poster in Training

Ajax onSuccess event - create Pager for newly created table.

Protuberance 67 Junior Poster in Training

Try to type this

c = is.get();       // get character from file
cout << (int)c;

Or

c = is.get();       // get character from file
int int_c = (int)c;
cout << int_c;

ostream operator << overloaded for all primitive types. So you have to define the type explicitly.
For Code2Char operation you need to type something like this

c = is.get();       // get character from file
int int_c = (int)c;
cout << int_c;   //ascii-code
char a = (char)int_c;
cout << a;        //character
Protuberance 67 Junior Poster in Training

try to type this

if(fn.peek() == '\n' || fn.peek() == EOF)

Look this http://msdn.microsoft.com/en-us/library/ebe3zf17(VS.80).aspx

peek method returns the next character

Salem commented: looks good to me +36
Protuberance 67 Junior Poster in Training

The most simplifying method is a structures.
Like that

struct Node
{
    int value; //data of node
    Node *next; //pointer to a next node in the list
};

struct List
{
   Node *first;
   Node *last;
};

Implementation you will type by yourself. Good luck!

Salem commented: Seems like a good start to such a terse question +36