Name: Anonymous 2007-09-12 5:22 ID:wfxixJ2g
Excuse my newfagedry
Consider the C code function below:
void qwerty(int *x, int *y, int size)
{
int k=0;
while ( k < size ) {
*(x + k) = *(y + k);
k++;
}
}
i) What best describes the purpose of the function qwerty?
Consider the C code function below:
void qwerty(int *x, int *y, int size)
{
int k=0;
while ( k < size ) {
*(x + k) = *(y + k);
k++;
}
}
i) What best describes the purpose of the function qwerty?