Skip to content

b-duncs/holbertonschool-low_level_programming

Repository files navigation

holbertonschool-low_level_programming

0x00. C - Hello, World

man or help

  • gcc: GNU project C and C++ compiler
  • printf(3): formatted output conversion
  • puts: output of characters and strings
  • putchar: put a byte on a stdout stream

0x01. C - Variables, If, Else, While

man or help

  • ascii: ASCII character set encoded in octal, decimal, and hexadecimal

0x02. C - Functions, Nested Loops

man or help

0x03. C - Debugging

man or help

0x04. C - More Functions, More Nested Loops

man or help

0x05. C - Pointers, Arrays and Strings

man or help

0x06. C - More Pointers, Arrays and Strings

man or help

0x07. C - Even More Pointers, Arrays and Strings

man or help

0x08. C - Recursion

man or help

0x09. C - Static Libraries

man or help

  • ar: create, modify, and extract from archives
  • ranlib: generate an index to an archive
  • nm: list symbols from object files

0x0A. C - Dynamic Libraries

man or help

0x0A. C - argc, argv

man or help

0x0B. C - malloc, free

man or help

  • malloc: allocate and free dynamic memory
  • free: display amount of free and used memory in the system

0x0C. C - More Malloc, Free

man or help

  • exit(3): cause normal process termination
  • calloc: a memory allocator
  • realloc: memory reallocator

0x0D. C - Preproccesor

man or help

0x0E. C - Structures, typedef

man or help

0x0F. C - Function Pointers

man or help

0x10. C - Variadic Functions

man or help

  • stdarg: variable argument lists

0x11. C - printf

man or help

  • printf(3): formatted output conversion

0x12. C - Singly Linked Lists

man or help

0x13. C - More Singly Linked Lists

man or help

0x14. C - Bit Manipulation

man or help

0x15. C - File I/O

man or help

  • open: open and possibly create a file
  • close: close a file descriptor
  • read: read from a file descriptor
  • write: write to a file descriptor
  • dprintf: print formatted output

0x18. C - Doubly Linked Lists

man or help

0x1A. C - Hash Tables

man or help