Click here to Skip to main content
15,905,679 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionCreating a MFC "Static" Dill Pin
Larry Mills Sr13-Jun-09 4:35
Larry Mills Sr13-Jun-09 4:35 
AnswerRe: Creating a MFC "Static" Dill Pin
Randor 13-Jun-09 5:50
professional Randor 13-Jun-09 5:50 
GeneralRe: Creating a MFC "Static" Dill Pin
Larry Mills Sr13-Jun-09 16:08
Larry Mills Sr13-Jun-09 16:08 
GeneralRe: Creating a MFC "Static" Dill Pin
Randor 13-Jun-09 18:24
professional Randor 13-Jun-09 18:24 
Question[newbie] error C2065: 'b' : undeclared identifier Pin
jon-8013-Jun-09 3:23
professionaljon-8013-Jun-09 3:23 
AnswerRe: [newbie] error C2065: 'b' : undeclared identifier Pin
CPallini13-Jun-09 4:09
mveCPallini13-Jun-09 4:09 
AnswerRe: [newbie] error C2065: 'b' : undeclared identifier Pin
Stuart Dootson13-Jun-09 13:05
professionalStuart Dootson13-Jun-09 13:05 
GeneralRe: [newbie] error C2065: 'b' : undeclared identifier Pin
jon-8013-Jun-09 21:19
professionaljon-8013-Jun-09 21:19 
Resolved that by including 'using namespace std;'. Now it reads:

C1010 - unexpected eof. Says it needs a header file, but I "forgot" what to include. Afiak the header file includes:

#pragma once

...

...and the headers of the methods used in my case...

int main...

However, it's strange that the default template created by visual studio with a main method did not require a .header file.

// SieveOfErathostenes.cpp : main project file.

#include <bitset>
#include <iostream>
#include <ctime>

using namespace System;
using namespace std;

int main(array<System::String ^> ^args)
{
    const int N = 2000000;
    clock_t cstart = clock();

    std::bitset<N + 1> b;
    int count = 0;
    int i;
    for (i = 2; i <= N; i++)
        b.set(i);
    i = 2;

    while (i * i <= N)
    {
        if (b.test(i))
        {
            count++;
            int k = 2 * i;
            while (k <= N)
            {
                b.reset(k);
                k += i;
            }
        }
        i++;
    }

    while (i <= N)
    {
        if (b.test(i))  count++;
        i++;
    }

    clock_t cend = clock();
    double millis = 1000.0 * (cend - cstart) / CLOCKS_PER_SEC;

    cout << count << " primes \n" << millis << " milliseconds\n";

    return 0;
}

Sieve.h
#pragma once
#include <iostream>

int main(array<System::String ^> ^args);


Related links:
C++ Header files[^]

Jon

GeneralRe: [newbie] error C2065: 'b' : undeclared identifier Pin
Stuart Dootson14-Jun-09 2:16
professionalStuart Dootson14-Jun-09 2:16 
Question__declspec(dllimport) Pin
_808613-Jun-09 1:50
_808613-Jun-09 1:50 
AnswerRe: __declspec(dllimport) Pin
Randor 13-Jun-09 5:27
professional Randor 13-Jun-09 5:27 
GeneralRe: __declspec(dllimport) Pin
_808613-Jun-09 21:47
_808613-Jun-09 21:47 
GeneralRe: __declspec(dllimport) Pin
_808614-Jun-09 4:46
_808614-Jun-09 4:46 
GeneralRe: __declspec(dllimport) Pin
Randor 14-Jun-09 5:20
professional Randor 14-Jun-09 5:20 
QuestionCalling DLL function that is not imported(MFC and WinMain) Pin
sawerr13-Jun-09 0:50
sawerr13-Jun-09 0:50 
AnswerRe: Calling DLL function that is not imported(MFC and WinMain) Pin
sgenie6813-Jun-09 1:13
sgenie6813-Jun-09 1:13 
AnswerRe: Calling DLL function that is not imported(MFC and WinMain) Pin
Rajesh R Subramanian13-Jun-09 2:26
professionalRajesh R Subramanian13-Jun-09 2:26 
GeneralRe: Calling DLL function that is not imported(MFC and WinMain) Pin
sawerr13-Jun-09 3:17
sawerr13-Jun-09 3:17 
GeneralRe: Calling DLL function that is not imported(MFC and WinMain) Pin
sgenie6813-Jun-09 22:22
sgenie6813-Jun-09 22:22 
QuestionHow to open a logical partition and read all of its file using windows function ReadFile() ? Pin
krish_kumar12-Jun-09 22:53
krish_kumar12-Jun-09 22:53 
QuestionRe: How to open a logical partition and read all of its file using windows function ReadFile() ? Pin
Randor 13-Jun-09 5:38
professional Randor 13-Jun-09 5:38 
AnswerRe: How to open a logical partition and read all of its file using windows function ReadFile() ? Pin
krish_kumar13-Jun-09 6:27
krish_kumar13-Jun-09 6:27 
GeneralRe: How to open a logical partition and read all of its file using windows function ReadFile() ? Pin
Stuart Dootson13-Jun-09 12:59
professionalStuart Dootson13-Jun-09 12:59 
GeneralRe: How to open a logical partition and read all of its file using windows function ReadFile() ? Pin
Randor 14-Jun-09 6:14
professional Randor 14-Jun-09 6:14 
GeneralRe: How to open a logical partition and read all of its file using windows function ReadFile() ? Pin
krish_kumar14-Jun-09 18:32
krish_kumar14-Jun-09 18:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.