Tagged Questions

127
votes
80answers
61k views

File I/O in Every Programming Language [closed]

This has to be a common question that all programmers have from time to time. How do I read a line from a text file? Then the next question is always how do i write it back. Of course most of you ...
8
votes
25answers
8k views

Simplest, efficient ways to read binary and ascii files to string or similar in various languages

Personally, I always forget this stuff. So I figured this is a useful thing to have as a reference. Read an ascii file into a string Write an ascii file from a string Read a binary file into ...
0
votes
6answers
514 views

Remove Duplicates From File (vs COBOL)

This Cobol question really piqued my interest because of how much effort seemed to be involved in what seems like it would be a simple task. Some sloppy Python to remove file duplicates could be ...