initial check in
This commit is contained in:
19
testLong64.cpp
Normal file
19
testLong64.cpp
Normal 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user