21 lines
970 B
C
Executable file
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);
|
|
}
|