Skip to content

Latest commit

 

History

History

0x07-pointers_arrays_strings

0x07. C - Even more pointers, arrays and strings

Description

What you should learn from this project:

  • What are pointers to pointers and how to use them
  • What are multidimensional arrays and how to use them
  • What are the most common C standard library functions to manipulate strings

  • Write a function that fills memory with a constant byte.
  • Write a function that copies memory area.
  • Write a function that locates a character in a string.
  • Write a function that gets the length of a prefix substring.
  • Write a function that searches a string for any of a set of bytes.
  • Write a function that locates a substring.
  • Write a function that prints the chessboard.
  • Write a function that prints the sum of the two diagonals of a square matrix of integers.
  • Write a function that sets the value of a pointer to a char.
  • Create a file that contains the password for the crackme2 executable.

Author