User profile: sarangheh510
User info |
User name: | sarangheh510 |
History |
Joined: | |
Number of posts: | 17 |
Latest posts: |
HELP QUICK [code]
void voodoo(int* X, int* &Y) //px=&x=4, py=&y=3
{
int temp = *Y; //3
Y = X; //4
*X = temp+...
HELP QUICK Could someone explain to me what is going on??
[code]
#include <iostream>
2. using namespace std...
Printing out values of array in another function How would I return an array, then use it in the void print() function?
[code]#include <iostream>
us...
Finding sum, min, max values. I did this but when I put for example 3, 1, 2, 3...
[code]
#include <iostream>
using namespace ...
Finding sum, min, max values. I initialized min to 100 and it just printed out the min as 100....
|