000
30.05.2005, 17:18 Uhr
halloleute
|
Hi, ich hab ein kleines problem. ich möchte das ein string umgewandelt wird(z.B.:012345 ->543210 oder Cool -> looC) da solls rein: char wort[20]; GetDlgItemTextA(hwnd, IDC_NAME,wort, 20); ---->hier SetDlgItemTextA(hwnd, IDC_SN, wort);
Man soll den Name in das Feld IDC_NAME eingeben und er soll dann unmgewandelt im Feld IDC_SN erscheinen.
Hier die die ich irgendwo aufgeschnappt hab:
#include <iostream.h> #include <string.h>
void main() { char wort[20]; cout << "Bitte geben Sie ein Wort ein:"; cin >> wort; cout << ""<< wort<< " und jetzt umgedrehtn"; for(int i=strlen(wort) - 1; i>=0;i--) cout << wort[i]; cout << " "; }
nur zur info: ich hab dev C++ |