hola!
Te refieres a algo así???
#include <iostream.h>
#include <stdlib.h>
#include <string>
void imprime_tres_ultimos(char * txt);
int main()
{
char string[15];
strcpy(string,"abcdefghijklmno");
imprime_tres_ultimos(string);
system("PAUSE");
return 0;
}
void imprime_tres_ultimos(char * txt) {
int lng;
lng = strlen(txt);
cout << txt[lng - 3] << txt[lng - 2] << txt[lng - 1] << endl;
}
PD: perdón por la estupidez, pero es que te veía tan "solo"...
[Modificado el 3/9/02 por Kolme]