You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/ex10.c

24 lines
401 B

13 years ago
#include <stdio.h>
int main(int argc, char *argv[])
{
int i = 0;
for(i = 0; i < argc; i++) {
printf("arg %d: %s\n", i, argv[i]);
13 years ago
}
13 years ago
char *states[] = {
"California", "Oregon",
"Washington", "Texas",
NULL
13 years ago
};
char *state = "";
13 years ago
for(i = 0; NULL != (state = states[i]); i++) {
printf("state %d: %s\n", i, state);
13 years ago
}
return 0;
}