Write a COMPLETE and an EFFICIENT C program in which take the values (may contain float values) from the user for two matrices A (order 3x4) and B (order 4x9). No need of validation. No need to display matrices A and B. Your code should compute AxB and store the result in matrix C (of suitable order), and display the result. Finally, your code should store all the even values of matrix C in 1-D array (of suitable order) having name as smart, and display the smart array.
0 Comments