From b195d13a8e6642e0074cdacd95f691181b1b189e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=BDeljko=20Ra=C5=A1ovi=C4=87?= Date: Fri, 14 Jul 2023 18:41:02 +0200 Subject: [PATCH 1/2] Update readme.txt --- 03_helloworld/readme.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/03_helloworld/readme.txt b/03_helloworld/readme.txt index e69de29..39c2d41 100644 --- a/03_helloworld/readme.txt +++ b/03_helloworld/readme.txt @@ -0,0 +1,11 @@ +To compile your first program you need to run next command to your terminal + +$ clang helloworld.c -o helloworld + +OR + +$ gcc helloworld.c -o helloworld + +To execute your program you need to run next command to your terminal + +$ ./helloworld From 116875003301684fd326f61166f2df6f15c71b5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=BDeljko=20Ra=C5=A1ovi=C4=87?= Date: Mon, 31 Jul 2023 22:42:39 +0200 Subject: [PATCH 2/2] Update history.txt --- 02_history/history.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02_history/history.txt b/02_history/history.txt index 71139c0..8bf789a 100644 --- a/02_history/history.txt +++ b/02_history/history.txt @@ -1,6 +1,6 @@ C was developed about the time that UNIX was born, it was derived from BCPL and then B which were used on the multics project by Ken Thompson in 1970 for a DEC PDP-7. B was interpreted, and typeless. Since it was typeless, it coudn't take advantage of all the "modern" hardware features, For example, byte addressing in the PDP-11. -Ken Thompson and Dennis ritchie started work on a new language C, to overcome these limitations. At the same time UNIX development had started on the PDP-7 in assembly, and the idea was to port it to different families. A portable language was needed. So c was born around 1972 +Ken Thompson and Dennis Ritchie started work on a new language C, to overcome these limitations. At the same time UNIX development had started on the PDP-7 in assembly, and the idea was to port it to different families. A portable language was needed. So c was born around 1972 There was no spec at this point, until Brian Kernigahn and Dennis Richie wrote "The C programming language" in 1978, this was kind of like the first spec.