Name: Anonymous 2013-01-31 15:36
Write a program that displays "Hello world" (without quotes) to the screen.
#include <stdio.h>
#define STR(x) #x
int
main(void)
{
printf(STR(Hello world%c), 0x0a);
return 0;
}