Hey guys, Like the tittle says I'm looking to see if anyone can help me out with some C programming stuff. I'm not good at all at this stuff, I just know the very basics, I have an assignment and need some help. If anyone can help me out with these that would be great.
Write a program to perform matrix transpose and multiplication using 2 dimensional
array. You should write three functions:
Main function: get the elements of two 2*2 integer matrix from user input; display the
results after matrix transposition and multiplication.
Transpose: transpose the input matrix.
Multiplication: compute the multiplication of two matrix.
REQUIREMENT:
1 use pointers in transferring parameters between functions.
2 using formatted output to keep the results clear to read.
Second problem
Write a function to convert a decimal integer into a binary number. Get the input
decimal integer in the main function, transfer it to the user defined function. Display
the binary number on the screen.
Thanks a lot for your time.
Write a program to perform matrix transpose and multiplication using 2 dimensional
array. You should write three functions:
Main function: get the elements of two 2*2 integer matrix from user input; display the
results after matrix transposition and multiplication.
Transpose: transpose the input matrix.
Multiplication: compute the multiplication of two matrix.
REQUIREMENT:
1 use pointers in transferring parameters between functions.
2 using formatted output to keep the results clear to read.
Second problem
Write a function to convert a decimal integer into a binary number. Get the input
decimal integer in the main function, transfer it to the user defined function. Display
the binary number on the screen.
Thanks a lot for your time.
Comment