A typical mistake made by most beginning programming students. What's missing from the following program?

#include <stdio.h>
int main()
{
    printf("Hello");
    printf("World\n");
    return (0);
}

Next Hint
Answer

Main gallery