No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
good effort!!! but if we enter the month in number format it's not throwing any error and leading to wrong result.except that every thing is fine... as u specified enter the month in all caps...I think ...u can ignore that by using the function toUpperCase() .... overall nice programming!!!!!
/* MATRIX ADDITION */ #include<stdio.h> #include<conio.h> #define MAX 100 struct Matrix { int Element[MAX][MAX]; int No_of_Rows; int No_of_Cols; }; void MatrixAdd(const struct Matrix *,const struct Matrix *,struct Matrix *); int i,j; void main() { int p,q; struct Matrix Mat1; struct Matrix Mat2; struct Matrix res; clrscr(); printf("\nEnter size of the …
The End.
slnvpraveen