Questions tagged [read-write]

Read/write is a mode of access designating the intent or ability to perform both read and write operations on a entity.

Read/write typically denotes the ability or desire to both view and alter the contents on a file or other writable object.

In many cases this would suggest full access to a resource expect possibly in terms of use (e.g. a user have read and write but not execute access to a binary).

633 questions
-4
votes
1 answer

Significance of get() in the C++ snippet

This is a problem relating to file handling where we input data to a file and then display its contents. I am unable to understand how the line cin.get(ch); helps in the output. I found that if I remove this line from the code, the program is unable…
-4
votes
1 answer

Open, remove text, and save a text file

I want to edit some text files automatically, but I don't know what to used to do it. I want to open a file, check all lines, if one line begins with a 'C', I remove first 39-characters, etc .. then save all the file with an other name. I already…
BlackAlpha
  • 376
  • 1
  • 5
  • 15
-7
votes
4 answers

Write data directly to RAM in Java, and then read it?

I known this probably goes against lots of general rules in programming, but how would you do this? There are two reasons why I am asking this: I want to attempt to have on app write data to RAM and another to read that same data from RAM. I want…
Andrew delgadillo
  • 714
  • 6
  • 13
  • 24
1 2 3
42
43