Week 6 Assignment
#include <stdio.h>
int main() { int rows, cols, i, j;
int matrix[rows][cols];
int transpose[cols][rows];
return 0;}