42-archive/42-piscine-c/exam01/only_z/only_z.c
2016-08-25 20:50:28 +02:00

21 lines
970 B
C
Executable file

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* only_z.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: exam <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/12 18:04:48 by exam #+# #+# */
/* Updated: 2016/08/12 18:05:34 by exam ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
int main(void)
{
char z;
z = 'z';
write(1, &z, 1);
}