> For the complete documentation index, see [llms.txt](https://42-guide.gitbook.io/42-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://42-guide.gitbook.io/42-guide/piscine-life/c01.md).

# C01

In **C Piscine C01**, you'll continue developing your C programming skills by learning essential concepts like pointers, memory manipulation, and basic operations on arrays and strings. This module emphasizes hands-on problem-solving and solidifying your understanding of core programming fundamentals.

**What You'll Learn:**

* **Pointers and Multi-level Pointers**: How to use and manipulate pointers to store and retrieve data efficiently.
* **Basic Arithmetic Operations**: Implementing division, modulus, and swapping values.
* **Strings and Arrays**: Managing arrays and strings through reversing, sorting, and calculating lengths.
* **Standard Output**: Writing functions that interact with standard output using basic system calls.

**Projects in This Section:**

1. `ft_ft`: Modify values using a pointer.
2. `ft_ultimate_ft`: Work with multi-level pointers.
3. `ft_swap`: Swap values of two integers.
4. `ft_div_mod`: Compute division and modulus results.
5. `ft_ultimate_div_mod`: Modify division and modulus values using pointers.
6. `ft_putstr`: Display strings using standard output.
7. `ft_strlen`: Calculate the length of a string.
8. `ft_rev_int_tab`: Reverse an array of integers.
9. `ft_sort_int_tab`: Sort an array of integers in ascending order.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://42-guide.gitbook.io/42-guide/piscine-life/c01.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
