↧
How to access Linux command line arguments in C code
Have you ever used Linux command line? if yes then you would have definitely come across command line utilities which require arguments. For example basic commands like ‘cat’, ‘rm’ etc require a file...
View ArticleAnatomy of command line arguments in Linux
While designing a simple C program or a full fledged command line application, it is pretty usual to have a requirement for arguments to be passed while running the executable/application. These...
View Article