To create a simple C program which prints "Hello, World" on the screen, use a text editor to create a new file (e.g. hello.c — the file extension must be .c)
containing the following source code:
hello.c
#include <stdio.h>
int main(void)
{
puts("Hello, World")...