write assembly x86-64 language (.asm) function to take an array of integers and filter out od and evens.
void filter(int* arr, int evn, int* odd, int size);
int main() {
int arr [10] = {3, 8, 7, 6, 4, 3, 2, 16, 13, 14};
int evn [10] = {0};
int odd[10] = {0};
return 0;
}
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here