Hey, kinda feels like I'm in over my head here, but trying to learn how to use pthread_create and am having problems with passing in arguments. Right now, I have
a = pthread_create(&thread1, NULL, MatrixTimes, (Matrixa, 0, i, MAX, Matrixb));
in my code calling pthread create, and
void...