How do I combine cin and argv in a script?
int main(int argc, char* argv[])
c == argv[1];
cin >> c;
How do you ignore cin if there’s a command line argument, or do cin if there’s no command line argument?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The object
std::cinand objects of classstd::ifstreamboth share a common base class:std::istream. You can use this fact to pass eithercinor anifstreamto a common function: