Hash :
a3c4f3ff
Author :
Date :
2021-12-15T19:59:01
Add simple examples. * examples: New directory.
/* This file is in the public domain.
Source code of the C program. */
/* Get printf() declaration. */
#include <stdio.h>
/* Get getpid() declaration. */
#if HAVE_UNISTD_H
# include <unistd.h>
#endif
int
main ()
{
printf ("%s\n", "Hello, world!");
printf ("This program is running as process number %d.", getpid ());
putchar ('\n');
return 0;
}