forked from portfoliocourses/c-example-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmdargs.c
48 lines (40 loc) · 1.36 KB
/
cmdargs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*******************************************************************************
*
* Program: Command-line argument tutorial
*
* Description: Examples of using command-line arguments in C.
*
* YouTube Lesson: https://www.youtube.com/watch?v=wa2AfzyOff0
*
* Author: Kevin Browne @ https://portfoliocourses.com
*
*******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
// check if the correct number of arguments is present, exit if they are not
if (argc != 3)
{
printf("Two args required!\n");
exit(-1);
}
// convert the arguments to an int
int lower = atoi(argv[1]);
int higher = atoi(argv[2]);
// use the arguments to determine how the program should function
for (int i = lower; i <= higher; i++)
printf("%d\n", i);
// print out the number of arguments, which includes the program name itself!
// printf("argc: %d\n", argc);
// we could have a loop print out the arguments and handle the number of
// arguments "programmatically" using argc
// for (int i = 0; i < argc; i++)
// printf("argv[%d]=%s\n",i,argv[i]);
// or we can print out the arguments individually...
// printf("argv[0]=%s\n", argv[0]);
// printf("argv[1]=%s\n", argv[1]);
// printf("argv[2]=%s\n", argv[2]);
// printf("argv[3]=%s\n", argv[3]);
return 0;
}