lots of stuff

This commit is contained in:
Joseph Redmon
2016-01-28 12:30:38 -08:00
parent 1578ec70d7
commit 913d355ec1
35 changed files with 913 additions and 86 deletions

View File

@ -127,14 +127,13 @@ void pm(int M, int N, float *A)
for(i =0 ; i < M; ++i){
printf("%d ", i+1);
for(j = 0; j < N; ++j){
printf("%10.6f, ", A[i*N+j]);
printf("%2.4f, ", A[i*N+j]);
}
printf("\n");
}
printf("\n");
}
char *find_replace(char *str, char *orig, char *rep)
{
static char buffer[4096];