
- C++ Basics
- C++ Home
- C++ Overview
- C++ Environment Setup
- C++ Basic Syntax
- C++ Comments
- C++ Data Types
- C++ Variable Types
- C++ Variable Scope
- C++ Constants/Literals
- C++ Modifier Types
- C++ Storage Classes
- C++ Operators
- C++ Loop Types
- C++ Decision Making
- C++ Functions
- C++ Numbers
- C++ Arrays
- C++ Strings
- C++ Pointers
- C++ References
- C++ Date & Time
- C++ Basic Input/Output
- C++ Data Structures
- C++ Object Oriented
- C++ Classes & Objects
- C++ Inheritance
- C++ Overloading
- C++ Polymorphism
- C++ Abstraction
- C++ Encapsulation
- C++ Interfaces
How to Parse Command Line Arguments in C++?
It is possible to pass some values from the command line to your C++ programs when they are executed. These values are called command line arguments and many times they are important for your program especially when you want to control your program from outside instead of hard-coding those values inside the code.
The command line arguments are handled using main() function arguments where argc refers to the number of arguments passed, and argv[] is a pointer array which points to each argument passed to the program. Following is a simple example which checks if there is any argument supplied from the command line and takes action accordingly −
Example Code
#include <iostream> using namespace std; int main( int argc, char *argv[] ) { if( argc == 2 ) { cout << "The argument supplied is "<< argv[1] << endl; } else if( argc > 2 ) { cout << "Too many arguments supplied." <<endl; } else { cout << "One argument expected." << endl; } }
Output
$./a.out testing The argument supplied is testing
Output
$./a.out testing1 testing2 Too many arguments supplied.
Output
$./a.out One argument expected
- Related Articles
- getopt() function in C to parse command line arguments
- Parse Command Line Arguments in Bash on Linux
- Command Line arguments in C#
- Command line arguments in C/C++
- Command line arguments example in C
- How to add command line arguments in Python?
- Command line arguments in Java
- Command Line arguments in Lua
- Command Line Arguments in Python
- Java command line arguments
- How command line arguments are passed in main method in C#?
- How to Pass Command Line Arguments to Bash Script
- How to Use Command Line Arguments in a Bash Script
- Explain Java command line arguments.
- How do we access command line arguments in Python?

Advertisements