Project

General

Profile

Bug #789 » hello_world.c

hello world program to check debug dump validity - Pavel Shved, 02/04/2011 03:59 PM

 

#include <stdio.h>

int say_hello()
{
printf("Hello");
}
int say_world()
{
printf(", world!\n");
}

int main()
{
say_hello();
say_world();
}

(1-1/2)