Rozličné témy
reprezentácia času v počítači, pretečenie, enumeračné typy, exit status, štandardné kanály/prúdy
Záznam z prednášky
Additional Resources
Herout: Učebnica jazyka C: kapitola 14.1.1, 14.1.8
Kernighan, Ritchie: Programovací jazyk C: kapitoly a podkapitoly
Unix Time - wikipedia
time() - Returns the current calendar time encoded as a time_t object, and also stores it in the time_t object pointed to by arg (unless arg is a null pointer)
Why does i = i + i give me 0? - Odpoveď ohľadom pretečenia na serveri stackoverflow.com
man stdlib
What Are stdin, stdout, and stderr on Linux? -
stdin
,stdout
, andstderr
are three data streams created when you launch a Linux command. You can use them to tell if your scripts are being piped or redirected. We show you how.