Programming Code Center(PCC)
[C]

(PCC)::[simple-how-to-print-hello-world-in-c-language]::[c]

File Name : hello.c

#include <stdio.h>
int main()
{
 /* my first program in C */
 printf("Hello, World! \n");

 return 0;
}

Output :

hello.jpg