Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Wie wandelt man ein char in ein int oder float um?
char ch = 'a'; int i = (int)ch;
Stentor schrieb:
upps. Ich weiss ja nicht ob es mit char geht. Mit char* geht es nicht. Wie muss ich das da machen?
char* ch="123"; int i=(int)ch;
atoi()