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:
- main(int count, char *args[]){
- //code to be executed
- }
Recent Posts
The argument passed to the main() function while executing the program is known as command line argument. For example: