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 confusionYes! thanks a lot.
Pointer address confusion[code] int numbers[5] = {0, 1, 2, 3, 4}; int *ptr = numbers; ptr++; ...