/Visual Studio 2008/CppBasics/CppBasics.cpp
C++ | 33 lines | 11 code | 7 blank | 15 comment | 0 complexity | 7e1d5965efcb88da43c717514a477057 MD5 | raw file
- /****************************** Module Header ******************************\
- Module Name: CppBasics.cpp
- Project: CppBasics
- Copyright (c) Microsoft Corporation.
-
-
-
- This source is subject to the Microsoft Public License.
- See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
- All other rights reserved.
-
- THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
- EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
- WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
- \***************************************************************************/
-
- #include <stdio.h>
-
- extern void TypeCasting(void);
- extern void FunctionPointer(void);
- extern void Array(void);
-
-
- int wmain(int argc, wchar_t *argv[])
- {
- TypeCasting();
-
- FunctionPointer();
-
- Array();
-
- return 0;
- }