Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
autorake / examples / plainc / hello.c
Size: Mime:
/*
 *  hello.c  --  Say hello to the world.
 */

#ifdef HAVE_HEADER_STDIO_H
    #include <stdio.h>
    #define SAY_IT
#endif

int main( int argc, char **argv)
{
#ifdef SAY_IT
    printf( "Hello, world!\n");
#endif
#ifdef FEATURE_NOW
    printf( "Now is the time.\n");
#endif
    return 0;
}