hello.c
/* * File: hello.c
* --------------
* This program prints the message "Hello, world."
* on the screen. The program is taken from the
* classic C reference text "The C Programming
* language" by Brian Kernighan ang Dennis Ritchie.
*/
#include <stdio.h>
#include "genlib.h"
main()
{
printf("Hello, world.\n");
getchar();
}
/* * File: hello.c
* --------------
* This program prints the message "Hello, world."
* on the screen. The program is taken from the
* classic C reference text "The C Programming
* language" by Brian Kernighan ang Dennis Ritchie.
*/
#include <stdio.h>
#include "genlib.h"
main()
{
printf("Hello, world.\n");
getchar();
}