In this program we've broken up the complex operation of saying "Hello World" into two steps:

  1. Giving the greeting
  2. Identifying the scope of the greeting

But this program is simpler than expected. What's happening?

#include <stdio.h>
int main()
{
    /* Do the greeting
    printf("Hello ");
    /* Now identify who we are greeting */
    printf("World\n");
    return (0);
}

Source code

Next Hint
Answer

Main gallery