Basnetfor📚Cozey ✍️Pratik Basnetcozey.hashnode.dev·Jan 13, 2023🐲3×3 Matrix Addition🐲// C Program Code For 3x3 Matrix Addition #include<stdio.h> int main() { int i, j, a[3][3], b[3][3], sum[3][3]; printf("Values of Matrix A: \n"); for (i=0;i<3;i++) { for (j=0;j<3;j++) { scanf("%d",&a[i][j]...69 readsProgramming BlogsAdd a thoughtful commentNo comments yetBe the first to start the conversation.