Tagged Questions
6
votes
9answers
608 views
Is \n multi-character in C?
I read that \n consists of CR & LF. Each has their own ASCII codes.
So is the \n in C represented by a single character or is it multi-character?
Edit: Kindly specify your answer, rather than ...
2
votes
3answers
110 views
Find first of operation on a char pointer
I have a char buffer which contains characters read from a file. I need to take this char buffer and find the first end of line character within it.
EOL characters in this case are \n,\r,\f.
...