15 lines
203 B
C
15 lines
203 B
C
|
//
|
||
|
// Hello.c - Hello World
|
||
|
//
|
||
|
// Copyright Microsoft Corporation.
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int __cdecl
|
||
|
main(int argc, char **argv)
|
||
|
{
|
||
|
printf("Hello World!\n");
|
||
|
}
|