aboutsummaryrefslogtreecommitdiff
path: root/exam_final/subjects/7-0-ft_itoa
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-07-26 23:17:36 +0200
committerCharles <sircharlesaze@gmail.com>2019-07-26 23:17:36 +0200
commit8ec5431354bdb582455e8c32758098c5a0fdada2 (patch)
tree480c68814f822439850029df0e0249a2cafb8177 /exam_final/subjects/7-0-ft_itoa
parent475449dd4b1f3308bac6f72c34d87812216a0738 (diff)
downloadpiscine-8ec5431354bdb582455e8c32758098c5a0fdada2.tar.gz
piscine-8ec5431354bdb582455e8c32758098c5a0fdada2.tar.bz2
piscine-8ec5431354bdb582455e8c32758098c5a0fdada2.zip
exam final
Diffstat (limited to 'exam_final/subjects/7-0-ft_itoa')
-rw-r--r--exam_final/subjects/7-0-ft_itoa/subject.en.txt11
-rw-r--r--exam_final/subjects/7-0-ft_itoa/subject.fr.txt12
2 files changed, 23 insertions, 0 deletions
diff --git a/exam_final/subjects/7-0-ft_itoa/subject.en.txt b/exam_final/subjects/7-0-ft_itoa/subject.en.txt
new file mode 100644
index 0000000..54bf901
--- /dev/null
+++ b/exam_final/subjects/7-0-ft_itoa/subject.en.txt
@@ -0,0 +1,11 @@
+Assignment name : ft_itoa
+Expected files : ft_itoa.c
+Allowed functions: malloc
+--------------------------------------------------------------------------------
+
+Write a function that takes an int and converts it to a null-terminated string.
+The function returns the result in a char array that you must allocate.
+
+Your function must be declared as follows:
+
+char *ft_itoa(int nbr);
diff --git a/exam_final/subjects/7-0-ft_itoa/subject.fr.txt b/exam_final/subjects/7-0-ft_itoa/subject.fr.txt
new file mode 100644
index 0000000..6acf5df
--- /dev/null
+++ b/exam_final/subjects/7-0-ft_itoa/subject.fr.txt
@@ -0,0 +1,12 @@
+Assignment name : ft_itoa
+Expected files : ft_itoa.c
+Allowed functions: malloc
+--------------------------------------------------------------------------------
+
+Écrire une fonction qui prend un int et le convertit en chaîne terminée par un
+caractère nul. Cette fonction retourne le résultat en tant qu'un tableau de
+char que vous devez allouer.
+
+Votre fonction sera déclarée comme suit:
+
+char *ft_itoa(int nbr);