Language Ccpp Cref Examples Command_line.c

/ ********************************************************************
 *
 * Purpose: Demonstrate getting parameters from the command line.
 * Author: M J Leslie
 * Date: 27-Mar-94
 *
 ********************************************************************/
#include <stdio.h>
main(int argc, char *argv[])
{
 int count;
 /* Main takes two variables 'argc' is the number of parms on the 
 * command line and 'argv' is a pointer to each of the parameters.
 *
 *	int argc -- integer number called 'argc'
 *	char *argv[] -- Character pointer array!
 */
 printf("%i parameters entered on the command line.\n", argc);
				/*
				 * progname		argc = 1
				 * progname parm1 parm2	argc = 3
				 */
				/* 
				 * We take 1 from argc because 
				 * the argv array starts at zero 
				 * an ends at argc -1
				 */
 for ( count = 0; count <= argc -1 ; count++)
 {
				/* printf expects a pointer 
				 * to the text 
				 */
 printf("parm %d is %s\n", count, argv[count]);
 }
}

file: /Techref/language/ccpp/cref/EXAMPLES/command_line.c, 0KB, , updated: 1997年4月21日 09:52, local time: 2025年9月8日 13:41,
40.74.122.252:LOG IN

©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://massmind.org/techref/language/ccpp/cref/EXAMPLES/command_line.c"> language ccpp cref EXAMPLES command_line</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /