P
pkirk25
int main(int argc, char *argv[])
{
int z = 0;
cout << *argv[2] << endl;
return z;
}
tester hi james outputs the letter 'j'
How can I get ti to outout the whole word?
{
int z = 0;
cout << *argv[2] << endl;
return z;
}
tester hi james outputs the letter 'j'
How can I get ti to outout the whole word?