#define uli unsigned long int
/*
Get all parameter there was sent by (DOS/CMD Mode)
ex :
jal.exe -this is
Then the parameter is:
void main(int arc, char *ar[])
{
// arc:count of parameter(split with space)
// ar: 2D array include string parameter
int n=0,i;
char cmd[255]; //maksimal argument
char *cek = ar[1];
for (int j=1;j
i=0;
do{
cmd[n] = ar[j][i];
i++; n++;
}while(ar[j][i]!=0);
cmd[n]=' ';
n++;
};
cmd[n]='\0'; //null terminated string
//Show All Parameter command
cout << "----------------------\nparameter: "<< cmd << '\n';
}
// by: Klampok_Child@yahoo.co.id
No comments:
Post a Comment