User profile: Millhouse17

User info
User name:Millhouse17
Email:itsmillertime17@gmail.com
Name:Matt
Location:Maryland
History
Joined:
Number of posts:11
Latest posts:

Structured arrays
That works perfect. Thanks

Structured arrays
How then would I display an array of Author structures with 3 elements?

Structured arrays
I working on an assignment that processes an array of structs. In the main function I am attempting ...

Pointer array confusion
Yes! thanks a lot.

Pointer address confusion
[code] int numbers[5] = {0, 1, 2, 3, 4}; int *ptr = numbers; ptr++; ...