#include /* * First C program */ int main() { // Print to the stream "stdout" fputs("Hello World\n",stdout); return 0; }