[ create a new paste ] login | about

Link: http://codepad.org/XFKVFvVM    [ raw code | fork ]

C++, pasted on Dec 26:
1
2
3
4
5
6
7
8
    int value;
    ifstream is(filename);
    
    assert(is.good());
    
    while(is >> value) {
        cout << value << endl;
    }


Create a new paste based on this one


Comments: