The following program prints text to the screen. No variables are used. One function, printf() is used to display the text.
#include <stdio.h>
int main()
{
printf("Words.");
return 0;
}
link explaining the program