Inserting a pound sign in C++

Soldato
Joined
14 Apr 2004
Posts
11,888
Location
UK
Hi guys,

We're compiling a group assignment and for some strange reason when we insert the '£' sign we get a 'ύ' instead, that's when the program runs.

What are we doing wrong?

Cheers.
 
using the wrong character set. £ isn't in standard ASCI so it's an extended character, u with an unlaut is using the same numeric value as £. I'd ask your lecturer if I were you.

Paul
 
Back
Top Bottom