
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I want to create a function similar to:
void Print(
argument, // first value
... // next values
);
or
uint FileWrite(
int file_handle, // File handle
... // List of recorded parameters
);
Example function:
bool checkCharacters(argument)
{
}
Call function:
checkCharacters("a","d"); // result true
checkCharacters("a","a"); // result true
checkCharacters("a","b","z"); // result false
Thanks everyone!