User profile: cdlang

User info
User name:cdlang
History
Joined:
Number of posts:6
Latest posts:

array sums and averages
@Ricardo R [code]sum = compute_sum(list1, ARRAY_SIZE);[/code] [code]average = compute_average(list1...

Pointer Out Of Scope
@pcannons [code]void resizeArray(T*& keys, int &oldMaximum){[/code] Aru you sure that you write "T*&...

simple pointers question
@codejunky99 Before use "*_texture = *texture;" & "*_palette = *palette;", did you use "_texture = ...

loop to find the sum
@youichi I think you can do it like that: [code]while (cin >> number) { //if input is a number,sav...

Pointer Out Of Scope
@pcannons function body line 13: newkeys = keys; //it's wrong