80 seems to be the default in many different environments and I'm looking for a technical or historical reason. It is common knowledge that lines of code shouldn't exceed 80 characters, but I'm hard pressed to find a reason why outside of "some people might get annoyed."

link|improve this question

2  
Some of us still remember punch cards, fortran coding forms, and IBM 3270 terminals. – Paul Tomblin Jan 10 '11 at 20:19
1  
IBM's most popular punch card. en.wikipedia.org/wiki/… – Hans Passant Jan 10 '11 at 20:35
Being born in recent history definitely leaves me at a disadvantage here. – num1 Jan 10 '11 at 21:20
3  
Well, it starts with the width of chariot wheels ... – Andy Thomas-Cramer Jan 10 '11 at 23:05
feedback

5 Answers

up vote 5 down vote accepted

Wikipedia has something to say http://en.wikipedia.org/wiki/Characters_per_line

Also, http://richarddingwall.name/2008/05/31/is-the-80-character-line-limit-still-relevant/

Though, I believe SO should have a trivia section for things like this.

link|improve this answer
feedback

It is because IBM punch cards were 80 characters wide.

link|improve this answer
While this answer is correct, I appreciate the links given in the accepted answer. – num1 Jan 10 '11 at 21:23
feedback

One of the characteristics of good typography is properly set measure - length of the line of characters.

There is an optimum width for a Measure and that is defined by the amount of characters are in the line. A general good rule of thumb is 2-3 alphabets in length, or 52-78 characters (including spaces).

It simply makes sense to make your text readable.

See Five simple steps to better typography for more info.

link|improve this answer
feedback

Your computer probably doesn't have a punch card reader, but it probably does have lpr(1) which follows the convention set by IBM for punch cards. The lpr(1) command defaults to Courier font with margins set for 80-columns and 8-space tabs for plain text files on 8.5"x11" paper. Try cat foo.c | lpr and if the author of foo.c used conventional line width and source code formatting rules, then the printed page will look mostly readable. Otherwise, best not to kill the trees.

link|improve this answer
1  
Thanks for this answer! – num1 Jan 14 '11 at 6:18
My answer has the added virtue of not being merely of historical interest. There are still valid technical reasons to use 80-column width formatting for source files wherever there are people who still print source code using the command line tools and expect to be able to read it. – james woodyatt Feb 7 '11 at 6:26
feedback

If I remember correctly the old dot matrix printers were only able to print 80 characters across. I am pretty sure my old commodore 64 and 128 had the same 80 characters, now that I think about it, I don't think the monitor could display more than 80 characters either

The LA30 was a 30 character/second dot matrix printer introduced in 1970 by Digital Equipment Corporation of Maynard, Massachusetts. It printed 80 columns of uppercase-only 5x7 dot matrix characters across a unique-sized paper.

http://en.wikipedia.org/wiki/Dot_matrix_printer

link|improve this answer
2  
2  
Commodore64 (as apple ][) could natively handle only 40 standard characters (horizontal resolution was 320). To get 80 means using 4 pixels per character monochrome (the hardware could handle two colors for every 8x8 cell). Higher resolution wouldn't have been practical anyway as most most users only had television that can't be used seriously with 80 characters and at that time also the video signal was transmitted by a modulator (no direct vga input) that sure doesn't help. – 6502 Jan 10 '11 at 20:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.