#include <stdio.h>
main()
{
printf("Hello World\n");
}
This particular library, (described by
stdio.h
)
is the
Standard I/O
Library.
We'll see later that it defines the most common way in which data
is inputted to and outputted from C programs.