Name: Anonymous 2013-01-31 15:36
Write a program that displays "Hello world" (without quotes) to the screen.
#include <stdio.h>
int main(int argc, char ** argv)
{
printf("Hello" " " "world");
return 0;
}