singrdk/base/Windows/Benchmarks/Hello/Hello.c

15 lines
203 B
C
Raw Normal View History

2008-11-17 18:29:00 -05:00
//
// Hello.c - Hello World
//
// Copyright Microsoft Corporation.
// All rights reserved.
//
#include <stdio.h>
int __cdecl
main(int argc, char **argv)
{
printf("Hello World!\n");
}