Google News
logo
C-Language - Interview Questions
What is command line argument?
The argument passed to the main() function while executing the program is known as command line argument.

For example :
 
main(int count, char *args[]){  
//code to  be executed  
} 
Advertisement