I don't learn C and I have to tell what the function below do:
x(a,b){
float *a,*b;
while(*a++ = *b++);
}
I know how does this funcion with instead of floats chars work but I don't get what should this do. Copy the value or address. If value why is it in while loop?
question from:https://stackoverflow.com/questions/65540904/c-function-whilea-b-with-floats