Hallo zusammen!
Ich hab ein kleines Programm geschrieben es funzt aba net. Der Quelltext:
#include
#include
using namespace std;
/*##############################################################################################################*/
//variabls
char cmd_int[20];
char cmd_str[20];
/*##############################################################################################################*/
int main ()
{
system(„title SilverMoonEngine“);
//entering of a command
enter_cmd:
cin >> cmd_int;
strcpy(cmd_str,cmd_int);
//out working of cmd
switch(cmd_str){
case ‚reconnect‘:
system(„reconnect.exe“);
case ‚exit‘:
goto exit;
}
else {
cout
Gruß mnapster