Sams Teach Yourself C in 21 Days

(singke) #1
Understanding Pointers 205

9


27: printf(“\n================================”);
28: printf(“========================\n”);
29:
30: return 0;
31: }

Short Float Double
========================================================
Element 0: 4206736 4206608 4206656
Element 1: 4206738 4206612 4206664
Element 2: 4206740 4206616 4206672
Element 3: 4206742 4206620 4206680
Element 4: 4206744 4206624 4206688
Element 5: 4206746 4206628 4206696
Element 6: 4206748 4206632 4206704
Element 7: 4206750 4206636 4206712
Element 8: 4206752 4206640 4206720
Element 9: 4206754 4206644 4206728
========================================================
The exact addresses that your system displays will be different from these, but
the relationships are the same. In this output, there are two bytes between short
elements, four bytes between floatelements, and eight bytes between doubleelements.

LISTING9.2 continued

OUTPUT

ANALYSIS

Some machines use different sizes for variable types. If your machine differs,
the preceding output might have different-size gaps; however, they will be
consistent gaps.

Note


This listing takes advantage of the escape characters discussed on Day 7, “Fundamentals
of Reading and Writing Information.” The printf()calls in lines 16 and 24 use the tab
escape character (\t) to help format the table by aligning the columns.
Looking more closely at Listing 9.2, you can see that three arrays are created in lines 8,
9, and 10. Line 8 declares array array_sof type short, line 9 declares array array_fof
typefloat, and line 10 declares array array_dof type double. Line 16 prints the col-
umn headers for the table that will be displayed. Lines 18 and 19, along with lines 27
and 28, print dashed lines across the top and bottom of the table data. This is a nice touch
for a report. Lines 23, 24, and 25 are a forloop that prints each of the table’s rows. The
number of the element ctris printed first. This is followed by the address of the element
in each of the three arrays.

15 448201x-CH09 8/13/02 11:21 AM Page 205

Free download pdf