c-first-steps

a C playground
Index Commits Files Refs README
commit 2201ed953e69d5ceedb207c4245d0f2ac8f5a449
parent 347078c127e84177aa8980a4b576bd20ccd3535b
Author: Martin J. Klöckner <martin.cachari@gmail.com>
Date:   Sun, 20 Dec 2020 02:00:52 -0300

Merge branch 'master' of github.com:klewer-martin/c-repo

Things that need to be done (?

Diffstat:
A95.11/project01/README.md | 39+++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+), 0 deletions(-)
diff --git a/95.11/project01/README.md b/95.11/project01/README.md
@@ -0,0 +1,39 @@
+# PROJECT NUMBER 1 - ALGORITHMS & PROGRAMATION I
+
+This folder contains the first project of "algoritmos y 
+programacion I" a subject from Facultad de Ingenieria de la
+Universidad de Buenos Aires. The project is a program that 
+runs on CLI which its function is to process data entered via 
+a .csv file.
+
+What it does is receive a number for a country, date, and number of
+cases (of COVID19), and prints it on stdout with a human readable
+format.
+
+Bibliography:
+
+"The C programming language" - Brian W. Kernighan & Dennis Ritchie.
+
+NAME:
+    analisis_covid - analyze RAW data and export it with a human 
+    readable format.
+
+SYNOPSIS:
+    
+    analisis_covid [-in] SOURCE [-out] DEST
+    analisis_covid [-out] DEST [-in] SOURCE
+
+DESCRIPTION:
+    Process RAW data from a .csv(comma separated values) file,
+    and export it to another .csv file, if the output file doesn't
+    exist then it creates one with the specified name.
+    When you invoke analisis_covid, expects.. to be continued
+
+
+AUTHOR:
+    Written by Martin J. Klöckner - Argentina - December 2020.
+
+
+
+
+