Tagged Questions

2
votes
1answer
107 views

Ruby: ARGV breaks accented characters

# encoding: utf-8 foo = "Résumé" p foo > "Résumé" # encoding: utf-8 ARGV.each do |argument| p argument end test.rb Résumé > "R\xE9sum\xE9" Why does this occur, and how can I get ARGV to ...
0
votes
1answer
4k views

Visual C++ argv question

I'm having some trouble with Visual Studio 2008. Very simple program: printing strings that are sent in as arguments. Why does this: #include <iostream> using namespace std; int _tmain(int ...