vote up 0 vote down star

Possible Duplicates:
The 80 column limit, still useful?
Studies on optimal code width?

I do not remember where I read that. That would make it easier to print out the code.

flag

69% accept rate
duplicate, several times over – Mitch Wheat Jun 13 at 14:02
1  
Dupe of stackoverflow.com/questions/746853/… among many others. – Neil Butterworth Jun 13 at 14:04
Back in mainframe days we used to pore over printouts of COBOL code. The line printers of the day generally had 132 columns though. Does anybody seriously still print out code? I can't remember the last time I did it. – Paul Mitchell Jun 13 at 14:30

closed as exact duplicate by Neil Butterworth, Mitch Wheat, Richard, Burkhard, Chris Jester-Young Jun 13 at 14:45

6 Answers

vote up 0 vote down check

I think it's more of a historical reason related to Punch cards.

link|flag
vote up 0 vote down

That's just leftover from the 80 column text window days. (and punch cards before that!)

However, since lines do get harder to read the longer they get, it does make sense to limit the line length of your code, and 70-80 columns is very widely used, not just in code, but in other media like webpages, email, books.

Varies, of course, to a pretty wide degree. Stackoverflow, for example, is using about 100 character wide posts.

link|flag
vote up 0 vote down

back in the olden days, monitors used to have 80 columns per line.. to have code lines not exceeding this length became a convention for the sake of convenience...the practice has got carried forward with time for no specific reason

link|flag
vote up 0 vote down

it's all about code style

python recommends 80 columns of code. it has to do with the punch card era

link|flag

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