C Piscine Exam 01 Jun 2026

The test is graded by Moulinette , 42's automated testing system, which checks your code against hidden test cases. 2. Typical Topics Covered in Exam 01

int *ft_range(int min, int max);

Copying strings safely while managing buffer boundaries. c piscine exam 01

int a = 5; int b = 3;

Comparing two strings and returning the ASCII difference. The test is graded by Moulinette , 42's

If an exercise fails (e.g., due to a memory leak, incorrect output, or forbidden functions), you get a 0 for that task, and the exam often stops there—you cannot progress to harder questions.

int sum = a + b; // addition int product = a * b; // multiplication int isEqual = (a == b); // comparison int a = 5; int b = 3;

The exam takes place in a controlled, offline environment. You will not have access to the internet, your previous exercises, or external notes. You must rely entirely on your memory and the man pages available on the terminal. The "Exam Shell" interface manages your progress, serving one exercise at a time. You cannot skip an exercise; you must submit a working solution to move to the next level. Core Technical Focus