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 simply saying "yes, it is" or "no, it isn't"
|
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 simply saying "yes, it is" or "no, it isn't"
| |||||||||||||
feedback
|
|
Generally: Issues arise because in the actual file representation, UNIX-based systems tend to use In a file:
Of course, like all binary data, these characters are all about interpretation, and that interpretation depends on the application using the data. Stick to '\n' when you are making C-strings, unless you want a literal carriage-return, because as people have pointed out in the comments, the internal representation doesn't concern you. IO libraries are supposed to handle this themselves and abstract it away from you. For your curiosity, in decimal, | |||||||||||||||||
feedback
|
|
In a C program, it's a single character, It's the responsibility of the C I/O functions to do the conversions between the C representation of In C programs, simply use | |||||||||||||||
feedback
|
|
It depends:
some I/O operations transform a | |||||
feedback
|
|
When you print the Writing Sample code:
A quick
in foo.txt under a hex editor. It's important to note that this translation DOES NOT occur if you are writing to a file in 'binary mode'. Reading If you are reading the file back in using the same tools, also on windows, the "windows EOL" will be interpreted properly if you try to match up against When reading it back
You get
Therefore, the only time this should be relevant to you is if you are
| ||||
|
feedback
|
|
A given platform will have some physical representation of that logical separation between lines. On Unix and most similar systems, the new-line is represented by a line-feed (LF) character (and since Unix was/is so closely associated with C, on Unix the LF is often just called a new-line). On MacOS, it's typically represented by a carriage-return (CR). On a fair number of other systems, most prominently Windows, it's represented by a carriage return/line feed pair -- normally in that order, though once in a while you see something use LF followed by CR (as I recall, Clarion used to do that). In theory, a new-line doesn't need to correspond to any characters in the stream at all though. For example, a system could have text files that were stored as a length followed by the appropriate number of characters. In such a case, the run-time library would need to carry out a slightly more extensive translation between internal and external representations of text files than is now common, but such is life. | |||||
feedback
|
|
According to the C99 Standard (section 5.2.2),
Also
Most C implementations choose to define | |||
|
feedback
|
|
Your question is about text files. A text file is a sequence of lines. On Unix/Linux/Mac they are usually represented by a single LINEFEED Anyway, the library code in So, no matter what the representation is on any given system, when you read a text file in Note: The | |||
|
feedback
|
|
Yes it is.
| ||||
|
feedback
|
|
It is a single character. It represents Newline (but is not the only representation - Wikipedia). EDIT: The question was changed while I was typing the answer. | |||
|
feedback
|