In this program we've broken up the complex operation of saying "Hello World" into two steps:
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);
}
Hint 1:
It looks like there are two printf statements in this program.
There are not.