Skip to content

Commit 80c304d

Browse files
committed
added: 101-quote.c
1 parent 5f351dc commit 80c304d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

0x00-hello_world/101-quote.c

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#include <stdio.h>
2+
#include <string.h>
3+
#include <unistd.h>
4+
5+
/**
6+
* main - Entry Point
7+
*
8+
* writing to standard error
9+
*
10+
* Return: This time will fail
11+
*/
12+
int main(void)
13+
{
14+
char *message = "and that piece of art is useful\" - Dora Korpar, 2015-10-19\n";
15+
16+
write(2, message, strlen(message));
17+
return (1);
18+
}

0 commit comments

Comments
 (0)