An open API service indexing awesome lists of open source software.

https://github.com/alvachon/42_piscine

Here's some exercises covered during my C Piscine at 42 Quebec. I believe it's easier to understand something by trying to implement it and figuring out why it work.
https://github.com/alvachon/42_piscine

piscine-c piscine42

Last synced: about 2 months ago
JSON representation

Here's some exercises covered during my C Piscine at 42 Quebec. I believe it's easier to understand something by trying to implement it and figuring out why it work.

Awesome Lists containing this project

README

        

# C Piscine

Here's some exercises covered during my C Piscine at 42 Quebec.

## Why
I believe it's easier to understand something by trying to implement it and figuring out why it work.

For me, learning how to code is the same thing as learning how to draw. At first, you will probably need some references, but with practice, you will be able to create something made all by your own mind.

## Notice
If some 42 students sneak around here, please keep in mind that cheating (not understanding) won't help you in the long run.

## How to make it work
Each folder of C have 2 c files, one containing the function, the other, the main file that call the function.
In the command line, you will need to call both of them to check the result in the ./a.out file.\

**Don't forget to call -Wall -Werror -Wextra and the norminette !**
```
gcc function.c main.c
```
This will execute the compiled program and display any output it produces**
```
./a.out
```

## Done
[C Piscine C00](https://github.com/alvachon/42_piscine/tree/main/C00) -
[C Piscine C01](https://github.com/alvachon/42_piscine/tree/main/C01) -
[C Piscine C02](https://github.com/alvachon/42_piscine/tree/main/C02) -
[C Piscine C03](https://github.com/alvachon/42_piscine/tree/main/C03) -
[C Piscine C04](https://github.com/alvachon/42_piscine/tree/main/C04) -
[C Piscine C05](https://github.com/alvachon/42_piscine/tree/main/C05) -
[C Piscine C06](https://github.com/alvachon/42_piscine/tree/main/C06) -
[C Piscine C07](https://github.com/alvachon/42_piscine/tree/main/C07) -
[C Piscine Shell 00](https://github.com/alvachon/piscine_c_42_2022/tree/main/Shell_00) -
[C Piscine Shell 01](https://github.com/alvachon/piscine_c_42_2022/tree/main/Shell_00)
# Version
7.2