PageRenderTime 37ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CppBasics/CppBasics.cpp

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