User profile: Brooklyn

User info
User name:Brooklyn
Name:Brooklyn
History
Joined:
Number of posts:15
Latest posts:

array problem
#include <iostream> #include <iomanip> using namespace std; int main() { int x [5] ={2,2,1,3,1,...

printing an array
thank you so much that makes much more sense one array set them to 0 and the other to print them i ...

printing an array
i want to give the array all elements of 0 then print it could you help me find what am doing wro...

Tracing a function reference
the first call it was simple and i got 3 -5 2 8 -5 -1 the second call to func confuse me when i...

Tracing a function reference
[code]int main() { int a, b, c; void changes (int &, int &, int &); a=3; b=-5; ...