this has probably been asked before, but I haven\'t been able to find any answers so far. I\'m trying to start my program up with multi-line input, I.E. something I don\'t w
You may save your input as a file.(like "intput.txt"). Then call
freopen("intput.txt", "r", stdin); //code to read from stdin. fclose(stdin);