18 lines
202 B
C
18 lines
202 B
C
#include <unistd.h>
|
|
|
|
void
|
|
hello ()
|
|
{
|
|
char *hello = "Hello \\\"!\r\n";
|
|
int i;
|
|
for (i = 0; hello[i]; i++)
|
|
write (1, hello + i, 1);
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
hello ();
|
|
|
|
return 0; /* after-hello */
|
|
}
|