initial check in

This commit is contained in:
2012-12-06 21:43:03 +04:00
commit 4bc273824d
179 changed files with 29415 additions and 0 deletions

19
testLong64.cpp Normal file
View File

@@ -0,0 +1,19 @@
// testLong64.cpp : Defines the entry point for the console application.
//
//#include "stdafx.h"
#include <iostream>
//#define long __int64
int main(int argc, char * argv[])
{
std::cout << "short " << sizeof( short ) << std::endl;
std::cout << "int " << sizeof( int ) << std::endl;
std::cout << "long " << sizeof( long ) << std::endl;
std::cout << "long long " << sizeof( long long ) << std::endl;
std::cout << "void* " << sizeof( void* ) << std::endl;
return 0;
}