commit 5030306d2cff6243d6b901948ab7941a5d30e8d3
parent e8d4798ec11fda246a8e65e010526d4c39a16c48
Author: Martin J. Klöckner <martin.cachari@gmail.com>
Date: Thu, 10 Dec 2020 18:47:06 -0300
Merge branch 'master' of github.com:klewer-martin/c-repo
merged branch master;
Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/95.11/guia03/ex26.c b/95.11/guia03/ex26.c
@@ -15,7 +15,7 @@ int main ( void ) {
return 1;
}
-// This part couts the lengh of the first string
+// This part counts the length of the first string
// and replaces the new line character for a blank space;
for(i = 0; str1[i] != '\0'; i++)
if(str1[i] == '\n')
diff --git a/95.11/guia06/a.out b/95.11/guia06/a.out
Binary files differ.
diff --git a/README.md b/README.md
@@ -2,12 +2,12 @@
This is a repository to store all my C files while I learn about this new language.
-In the-c-programming-language/ you can find solutions to exercices taken from the book:
-"The C programming language" - written by Brian W. Kernighan & Dennis M. Ritchie.
-
In "c-repo/95.11" you can find "Algoritmos y programacion I" (cod. 95.11) homework,
a subject from Facultad de Ingenieria de la Universidad de Buenos Aires.
+In the-c-programming-language/ you can find solutions to exercices taken from the book:
+"The C programming language" - written by Brian W. Kernighan & Dennis M. Ritchie.
+
Please consider that I've never programmed in my life before more than blinking
a led with Arduino® lol.