devxlogo

Switches

Question:
I’m attempting to write a command line program which has switch functionality (such as the DOS switches). I’m not sure how to code the program to accept the switches following the program call. It would run something like this:

sample.exe /n /d: /t blah blah:blah:blah

Answer:
Your program may need to handle other arguments as well as “switches.” For example, file names. But here’s some code I like to use to process any number of switches.

void main(int argc,char *argv[]){   int i;   /* read command line parameters */   for(i = 1;i < argc;i++) {      switch(argv[i][0]) {         case '/':         case '-':            switch(tolower(argv[i][1])) {               case 'a': // got /a or -a                  break;               case 'b': // got /b or -b                  break;               case 'c': // etc.                  break;               default: // ???-show help                  break;            }            break;         default:            // got an argument with no            // - or / maybe a filename            break;      }   }}
This should get you started. It allows switches to be set off with either “/” or “-“, to be upper or lower case, and gives a place to handle nonswitch arguments as well.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.