I'm trying to make a program like this
char username;
long password;
{
cout <<"Enter username : ";
cin >>username;
cout <<"Password : ";
cin >>password;
system("Command" username,password);
}
, the problem is that i can't pass the username and the password to function system()
Help please.
