Oh so how would I print it?
And if someone can explain what #define COL_WIDTH 80, char filename[MAX_PATH + 1] and char input_line[COL_WIDTH + 1] do, that'd be awesome!
@redfox814 am also a newbie but what @firedraco told you is true,you only readind and writing to it but you didn't printout anything like cout << //your stuff you want to print out // and to your question
1 2 3
#include iostream // is an header file from standard library //
#define col_width 80 // this is a constant you define and can be access globally //
# char filename [MAX_PATH + 1] // this has to do with array and am a newbie not so good at array but was a constant and define globally (to me) //
so that's all i understand bout it, hope it help. :)