Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c x 1
java x 1
Member Avatar for llemes4011

A program that finds the day of the week you were born on. Once again, this was adapted from a homework assignment, but I rewrote the entire thing from scratch >.< but it was a lot of fun.

Member Avatar for toyi
0
2K
Member Avatar for slnvpraveen

/* 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 …

Member Avatar for Aia
0
90