Currently, the permalink to an answer works like this:
<a title="permalink to this answer"
href="/questions/2121172/possible-reasons-for-tellg-failing/2121359#2121359">link</a>
I suggest to change it so that it becomes:
<a title="permalink to this answer"
href="/questions/2121172/possible-reasons-for-tellg-failing/2121359#2121359"
onclick="prompt('Permalink for this answer:', 'http://stackoverflow.com/questions/2121172/possible-reasons-for-tellg-failing/2121359#2121359'); return false;">link</a>
This will make the following dialog box appear with the text already selected if you have javascript enabled, so all you have to do is press ctrl-c and then Enter or Esc, instead of having to open a new page and then copy the URL from the address bar. Example:

If you have Firebug you can test it right away how it would look like! Just type in the console:
prompt('Permalink for this answer:', 'http://stackoverflow.com/questions/2121172/possible-reasons-for-tellg-failing/2121359#2121359');
Users without javascript enabled (not sure if this is supported at all) will experience the old exact behavior.