I am lost on my homework and need help .... here is what I am trying to do and the code I am working on is below it
Write a program for Matrix addition for two 3 by 3 matrices. -Take the input from the user. -Print both the input matrices and the output matrix.

#include<stdio. h>
main()
{
int aArray[3][3];
int bArray[3][3];
int cArray[3][3];
int a,b,c,d,e,f;

...