What is command line argument in C Language?

The argument passed to the main() function while executing the program is known as command line argument. For example:

  1. main(int count, char *args[]){
  2. //code to  be executed
  3. }