aboutsummaryrefslogtreecommitdiff
path: root/exam_final/subjects/7-0-ft_itoa/subject.en.txt
diff options
context:
space:
mode:
Diffstat (limited to 'exam_final/subjects/7-0-ft_itoa/subject.en.txt')
-rw-r--r--exam_final/subjects/7-0-ft_itoa/subject.en.txt11
1 files changed, 11 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);