Using Command Line Arguments

Using Command Line Arguments

You can directly pass arguments to a program. For this purpose, you have to declare these arguments in the parameter list of main():

 int main (int argc, char ** argv){}

The variable argc holds the number of arguments passed, and argv stores the arguments themselves as an array of null-terminated C-strings. Note that the first argument is the name of the program (i.e., the name of the exe file). The rest of the arguments are supplied by the user. Command line arguments are useful in Unix- and DOS-style programs that take options, file names etc. The following example shows how to implement a simple file copy program, that takes as arguments two filenames: the source file and the target file:

 //filename mycopy.cppint main (int argc, char ** argv){  if (argc<3) //not enough arguments  {    cout>> "one or more arguments missing";    exit(-1);  }  FILE *source = fopen(argv[1]);  FILE *target = fopen(argv[2]);  if ((source == NULL) || (target == NULL))  {    cout<< "failed to open one or more files";    exit(-1);  }  copyfiles(source, target); //call a copy function}

To run this program, you can invoke it from the command line prompt like this:

   C:> mycopy data.txt backup.bak
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several