diff options
Diffstat (limited to 'exam_final/rendu/aff_z')
| -rwxr-xr-x | exam_final/rendu/aff_z/aff_z.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/exam_final/rendu/aff_z/aff_z.c b/exam_final/rendu/aff_z/aff_z.c new file mode 100755 index 0000000..3cb7625 --- /dev/null +++ b/exam_final/rendu/aff_z/aff_z.c @@ -0,0 +1,21 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* aff_z.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: exam <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/07/26 10:00:33 by exam #+# #+# */ +/* Updated: 2019/07/26 10:02:22 by exam ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include <unistd.h> + +int main(int argc, char **argv) +{ + (void)argc; + (void)argv; + write(STDOUT_FILENO, "z\n", 2); + return (0); +} |
