1 | bool isLittleEndian(){ |
2 | const WORD endian = 0x1234; |
3 | return *(( BYTE *)&endian) == 0x34; |
4 | } |
1 | bool isLittleEndian(){ |
2 | const WORD endian = 0x1234; |
3 | return *(( BYTE *)&endian) == 0x34; |
4 | } |
C:\Documents and Settings\<User Name>\Recent
01 | #include <windows.h> |
02 | #include <shlobj.h> |
03 | #pragma comment ( lib, "shell32.lib" ) |
04 |
05 | int _tmain( int argc, _TCHAR* argv[] ){ |
06 | TCHAR path[MAX_PATH+1]; |
07 | WIN32_FIND_DATA findData; |
08 | HANDLE hFind; |
09 |
10 | if ( SHGetSpecialFolderPath( NULL, path, CSIDL_RECENT, FALSE ) ){ |
11 | _tprintf_s( _T( "%s\n" ), path ); |
12 |
13 | _tcscat_s( path, _T( "\\*.*" ) ); |
14 | hFind = FindFirstFile( path, &findData ); |
15 | path[_tcslen( path )-3] = 0; |
16 |
17 | do { |
18 | _tprintf_s( _T( "%s%s\n" ), path, findData.cFileName ); |
19 | } while ( FindNextFile( hFind, &findData ) ); |
20 |
21 | if ( hFind != INVALID_HANDLE_VALUE ){ |
22 | FindClose( hFind ); |
23 | } |
24 | } |
25 |
26 | system ( "pause" ); |
27 | return 0; |
28 | } |
01 | #include <windows.h> |
02 | #include <shlobj.h> |
03 | #pragma comment ( lib, "shell32.lib" ) |
04 |
05 | int _tmain( int argc, _TCHAR* argv[] ){ |
06 | FILE * pFile = NULL; |
07 | _tfopen_s( &pFile, _T( "RecentList.txt" ), _T( "wb" ) ); |
08 | if ( !pFile ){ |
09 | _tprintf_s( _T( "Cannot open file" ) ); |
10 | system ( "pause" ); |
11 | return 0; |
12 | } |
13 |
14 | WORD BOM = 0xFEFF; |
15 | fwrite ( &BOM, sizeof ( WORD ), 1, pFile ); |
16 |
17 | TCHAR path[MAX_PATH+1]; |
18 | WIN32_FIND_DATA findData; |
19 | HANDLE hFind; |
20 | if ( SHGetSpecialFolderPath( NULL, path, CSIDL_RECENT, FALSE ) ){ |
21 | _ftprintf_s( pFile, _T( "%s\n" ), path ); |
22 |
23 | _tcscat_s( path, _T( "\\*.*" ) ); |
24 | hFind = FindFirstFile( path, &findData ); |
25 | path[_tcslen( path )-3] = 0; |
26 |
27 | do { |
28 | _ftprintf_s( pFile, _T( "%s%s\n" ), path, findData.cFileName ); |
29 | } while ( FindNextFile( hFind, &findData ) ); |
30 |
31 | if ( hFind != INVALID_HANDLE_VALUE ){ |
32 | FindClose( hFind ); |
33 | } |
34 | } |
35 | fclose ( pFile ); |
36 |
37 | return 0; |
38 | } |
1 | ~yvals.h(513) : error C2143: syntax error : missing ';' before 'namespace' |
1 | error C2061: syntax error : identifier 'DWORD' |
01 | bool isPrime( const DWORD n ){ |
02 | if ( n < 2 ) |
03 | return FALSE; |
04 | if ( n == 2 || n == 3 ) |
05 | return TRUE; |
06 | if ( !(n%2) || !(n%3) ) |
07 | return FALSE; |
08 | DWORD limit = ( DWORD ) sqrt ( ( double )n ); |
09 | for ( DWORD i=5, gap=2; i<=limit; i+=gap, gap=6-gap ){ |
10 | if ( !(n%i) ){ |
11 | return FALSE; |
12 | } |
13 | } |
14 | return TRUE; |
15 | } |
01 | bool * eratosthenes( const DWORD n ){ |
02 | bool * pPrime = new bool [n+1]; |
03 | pPrime[0] = pPrime[1] = FALSE; |
04 | for ( DWORD i=2; i<=n; ++i ){ |
05 | pPrime[i] = TRUE; |
06 | } |
07 | DWORD limit = ( DWORD ) sqrt ( ( double )n ); |
08 | for ( DWORD i=2; i<limit; ++i ){ |
09 | if ( pPrime[i] ){ |
10 | for ( DWORD j=i*i; j<=n; j+=i ){ |
11 | pPrime[j] = FALSE; |
12 | } |
13 | } |
14 | } |
15 | return pPrime; |
16 | } |