// ---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // ---------------------------------------------------------------------------- // HelloCPP.cpp : Defines the entry point for the console application. // #include #include int main(int argc, char* argv[]) { printf("Hello world\n"); Sleep(INFINITE); return 0; }