fijate lo que hice:
    
Código C++:
Ver original- #include <iostream> 
- #include <fstream> 
-   
- using namespace std; 
-   
- int main() 
- { 
-    char letra[5]; 
-    char aux[5]; 
-    int i=0; 
-    fstream leer("letras.txt"); 
-    while( !leer.eof() ) 
-     { 
-      leer >> letra[i]; 
-      i++; 
-     } 
-   
-    for( int i=0; i<5; i++ ) 
-    { 
-         if(letra[i] == 160) 
-             aux[i] = 97; 
-   
-         if( letra[i] == 130 ) 
-             aux[i] = 101; 
-   
-         if( letra[i] == 161 ) 
-             aux[i] = 105; 
-   
-         if( letra[i] == 162 ) 
-             aux[i] = 111; 
-   
-         if( letra[i] == 163 ) 
-             aux[i] = 117; 
-    } 
-   
-    for( int i=0; i<5; i++ ) 
-        cout << aux[i] << " "; 
-   
- return 0; 
- } 
pero no me lo convierte me imprime como basura.... 
ves algo mal en este codigo??