What is Main function in C?

A C program source code for console-based applications should include a function called main. Main function is also known as the entry point function of any console based application. Main function has two arguments named as argument count (argc) of type integer and argument vector (argv) of type array of pointer to strings. Main function returns an integer value indicating a success (with a value of zero) or a failure (a negative number). The prototype of main function in C looks like below.

C main with argc and argv source code

What is argc (argument counter)?

Stores how many arguments system shell provided in the command line to run that application thus holding the count of argv. Argc holds a numerical value so the data type is an integer.

What is argv (argument vector)?

An argument vector is an array of string pointers that contains a list of strings. This vector or array contains a series of pointers that point to strings or char array in C. It stores the list of the individual argument entries provided by the shell. Argv has the datatype of an array of pointers to the string (char *).

argc argv diagram view

How to iterate argv list?

A C application should have atleas one string argument i.e. argument 0 and this holds the program name/path. The user given arguments are placed at one after another after this first argument. Argc or argument count is the first argument that holds the total number of elements in this argv array. We require to have one "for loop" starting with starting iteration from 0 to argc-1.

Iterate argv list example

#include <stdio.h>

int main (int argc, char *argv[])
{
  int count;
  printf ("Total %d user arguments\n", argc - 1);
  printf ("Program arguments:\n");
  for (count = 0; count <argc; count++)
  {
    printf ("argv [%d] = %s\n", count, argv [count]);
  }
  return 0;
}

Iterate argv list output

$ gcc  argc_argv.c -o argc_argv
$ ./argc_argv arg1 arg2 arg3
Total 3 user arguments
Program arguments:
argv [0] = ./argc_argv
argv [1] = arg1
argv [2] = arg2
argv [3] = arg3

How to duplicate argv list?

There are situations where we may need to allocate our own copy of argv list. Here is a program to duplicate argv list or create own copy of argv list. We are allocation an array of size argc-1 of pointers to string. Then we are running a loop to copy each argv[] strings to our array. We need to allocate a buffer of length of argv[i] + 1 and then we need to strcpy the buffer. This can be done using a simple string strdup() function.

Duplicate argv list example

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main (int argc, char *argv[])
{
  int count;
  char ** my_userargv;
  
  printf ("Total %d user arguments\n", argc - 1);
  printf ("Program arguments:\n");
  for (count = 0; count <argc; count++)
  {
    printf ("argv [%d] = %s\n", count, argv [count]);
  }
  printf ("Duplicate argv list\n");
  
  /* Allocate array buffer list */
  my_userargv = (char**)malloc(sizeof(char*)*(argc -1));
  if(!my_userargv)
  {
     printf("Memory allocation error!\n");
     return -1;
  }
  /* Allocate each string buffer and copy string */
  for (count = 0; count <argc-1; count++)
  {
    my_userargv[count] = strdup(argv[count+1]);
  }
  printf ("Argv list (only user arguments)\n");
  /* Print our own copy of argv */
  for (count = 0; count <argc-1; count++)
  {
    printf ("my argv [%d] = %s\n", count, my_userargv [count]);
  }
  
  /* Delete each string in this list */
  for (count = 0; count <argc-1; count++)
  {
    free(my_userargv [count]);
  }
  /* the array list */
  free(my_userargv);
  return 0;
}

Duplicate argv list output

$./a.out arg1 arg2 arg3
Total 3 user arguments
Program arguments:
argv [0] = ./a.out
argv [1] = arg1
argv [2] = arg2
argv [3] = arg3
Duplicate argv list
Argv list (only user arguments)
my argv [0] = arg1
my argv [1] = arg2
my argv [2] = arg3

About our authors: Team EQA

You have viewed 1 page out of 252. Your C learning is 0.00% complete. Login to check your learning progress.

#