working version of exercise 9

This commit is contained in:
Dan Buch 2011-09-08 22:41:34 -04:00
parent 7998233c9b
commit 34505c7200
3 changed files with 41 additions and 1 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ ex5
ex6
ex7
ex8
ex9

View File

@ -1,6 +1,6 @@
CFLAGS=-Wall -g
EXERCISES = ex1 ex3 ex4 ex5 ex6 ex7 ex8
EXERCISES = ex1 ex3 ex4 ex5 ex6 ex7 ex8 ex9
all: $(EXERCISES)

39
ex9.c Normal file
View File

@ -0,0 +1,39 @@
#include <stdio.h>
int main(int argc, char *argv[])
{
int numbers[4] = {0};
char name[4] = {'a'};
printf("numbers: %d %d %d %d\n",
numbers[0], numbers[1],
numbers[2], numbers[3]);
printf("name each: %c %c %c %c\n",
name[0], name[1],
name[2], name[3]);
printf("name: %s\n", name);
numbers[0] = 1;
numbers[1] = 2;
numbers[2] = 3;
numbers[3] = 4;
name[0] = 'Z';
name[1] = 'e';
name[2] = 'd';
name[3] = '\0';
printf("numbers: %d %d %d %d\n",
numbers[0], numbers[1],
numbers[2], numbers[3]);
printf("name each: %c %c %c %c\n",
name[0], name[1],
name[2], name[3]);
printf("name: %s\n", name);
return 0;
}