Command Line Argument in C1 min read

The arguments passed from the command line are called command-line arguments. Command-line arguments are passed to the main() method.

It allows you to pass the values in a program when they are executed. This is useful when the developer wants to control the program from the outside.

Since the values passed to the main() function, there are changes that need to be made in main() function. See the syntax below.

Let us see each of the argument passed:

  • argv – It is the total number of arguments in the command line including the program name. It counts the file name as the first argument.
  • argv[] – It contains all the arguments, the first one being the file name itself.

Example: C Program for Command Line Argument

Note that argv[0] holds the name of the program itself and argv[1] points to the first command-line argument and argv[n] gives the last argument.

Output:

Run the above program in windows by passing an argument.

cprogram.exe simple2code

It will print the following result:

Now if you pass multiple arguments (like: cprogram.exe simple2code is website), it will still display the same result as above.

But is you pass the argument in double quote, the program will treat that as one single value.

cprogram.exe “simple2code is a Website”

It will display the following result:

If no argument is supplied, argc will be 1.


MORE

Java Program to find the sum of the Largest Forward Diagonal

in this tutorial, we will write a java program to find the sum of the Largest Forward Diagonal in an Arraylist (matrix). Java Program to …

C Program to search an element in an array using Pointers

A separate function( search_function()) will be created where the array pointer will be declared and the searched element along with the size of an array …

C Program to find the sum of the digits of a number using recursion function

This C program calculates the sum of digits of a given number using recursion. Here’s a concise explanation: Function Definition: sumDigits(int n) This function calculates …

C program to find factorial of a number using Ternary operator with Recursion

Recursion refers to the function calling itself directly or in a cycle. Before we begin, you should have the knowledge of following in C Programming: …

C Program to Add Two Numbers Using Call by Reference

The program takes the two numbers from the user and passes the reference to the function where the sum is calculated. You may go through …

Find the output ab, cd, ef, g for the input a,b,c,d,e,f,g in Javascript and Python

In this tutorial, we will write a program to find a pairs of elements from an array such that for the input [a,b,c,d,e,f,g] we will …