working version of ex11.c

This commit is contained in:
Dan Buch
2011-09-10 00:22:25 -04:00
parent 45ca45c9e1
commit 6c210c9b40
3 changed files with 26 additions and 1 deletions

24
ex11.c Normal file
View 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;
}