working version of ex11.c
This commit is contained in:
parent
45ca45c9e1
commit
6c210c9b40
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,3 +7,4 @@ ex7
|
|||||||
ex8
|
ex8
|
||||||
ex9
|
ex9
|
||||||
ex10
|
ex10
|
||||||
|
ex11
|
||||||
|
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
|||||||
CFLAGS=-Wall -g
|
CFLAGS=-Wall -g
|
||||||
|
|
||||||
EXERCISES = ex1 ex3 ex4 ex5 ex6 ex7 ex8 ex9 ex10
|
EXERCISES = ex1 ex3 ex4 ex5 ex6 ex7 ex8 ex9 ex10 ex11
|
||||||
|
|
||||||
|
|
||||||
all: $(EXERCISES)
|
all: $(EXERCISES)
|
||||||
|
24
ex11.c
Normal file
24
ex11.c
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
int i = 0;
|
||||||
|
while(i < argc) {
|
||||||
|
printf("arg %d: %s\n", i, argv[i]);
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
char *states[] = {
|
||||||
|
"California", "Oregon",
|
||||||
|
"Washington", "Texas"
|
||||||
|
};
|
||||||
|
|
||||||
|
int num_states = 4;
|
||||||
|
i = 0;
|
||||||
|
while(i < num_states) {
|
||||||
|
printf("state %d: %s\n", i, states[i]);
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user