
- 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
Parsing Command Line Parameters in C++ Program
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
- Command Line arguments in C#
- Command line arguments in C/C++
- Command line arguments example in C
- How to Parse Command Line Arguments in C++?
- C# Program to Get and Print the Command Line Arguments Using Environment Class
- getopt() function in C to parse command line arguments
- C-style parser for command line options in Python
- What is a command line argument in C language?
- Program to Find Out the Minimum Parsing Tree in C++
- Command Line Interpreters
- Command line arguments in Java
- Command Line arguments in Lua
- Command Line Automation in Python
- Command Line Arguments in Python
- Value parameters vs Reference parameters vs Output Parameters in C#

Advertisements