what does cin.get(),getline(),input buffer and output buffer mean ?
Too many doubts
@vikash3303,
cin.get() - To input a single char
getline() - To input a whole line until delimiter
Input Buffer - Temporary space where data to be read is stored
Output Buffer - Temporary space where data to be written is stored.