Staredit Network > Forums > Technology & Computers > Topic: C++ GetTickCount()
C++ GetTickCount()
Mar 25 2008, 5:22 pm
By: Test  

Mar 25 2008, 5:22 pm Test Post #1



I can't seem to get the GetTickCount() function to work properly when using C++. I am using Visual C++ 2005 Express Edition. Is there a header I need to include? I can't find it anywhere, all i can find is lots of people asking about this, and getting answers that don't work. I heard that it is only a windows function, and I'm using windows.

I'm using in the srand(GetTickCount) function so it will get random data each time for the rand() function.

The error says:
Quote from Error
1>h:\visual studio 2005\projects\random data\random data\main.cpp(58) : error C3861: 'GetTickCount': identifier not found

Here's my code:
Code
#include <iomanip>
#include <iostream>

using namespace std;

int MostFrequent(int *data) { ... }
int LeastFrequent(int *data) { ... }
int Mean(int *data) { ... }

void main()
{
    int mostFrequent, leastFrequent; // themost and least frequent number
    double mean; // the mean of all of the random numbers
    int randInt[1000]; // array which gets filled up with random integers from 0-1000
    int data[1000] = {0}; // array with 1000 elements of 0
   
//set the random numbers to be random each time
//-- ERROR -->     srand(GetTickCount());

//randomize an int from 0-999 storing it in an array, and adding
//a count to another array to keep track of how many there are.
    for ( int x = 0; x < 1000; x++ )
    {
        randInt[x] = ( ( ( rand() * 1000 ) / RAND_MAX ));
        data[randInt[x]]++;
    }

//call functions and return most and least frequetn integers, and the mean.
    mostFrequent = MostFrequent(data);
    leastFrequent = LeastFrequent(data);
    mean = Mean(randInt);

//display the information to the user
    cout << "Most Frequent:" << setw(6) << mostFrequent << " appeared " << data[mostFrequent] << " times." << endl;
    cout << "Least Frequent: " << setw(4) << leastFrequent << " appeared " << data[leastFrequent] << " times." << endl;
    cout << "The mean is: " << mean << endl << endl;

//allow the user to view the results before quitting
    system("pause");

}//end main

Any help would be nice, unless you know of an alternate way of getting actual random data every time the program is run. If you need any more information please ask.



None.

Mar 25 2008, 7:05 pm ShadowFlare Post #2



#include <windows.h>



None.

Mar 25 2008, 10:25 pm Test Post #3



I remember trying that, and it didn't work... I'll try it again tomorrow when I'm at school. Thanks.



None.

Mar 26 2008, 3:02 am ShadowFlare Post #4



Well, that is certainly the required header file. If it doesn't work, it just means you don't have it installed or one of the files it needs. If that is the case, then maybe try Visual C++ 2008 Express Edition instead, because that will be easier to get the Windows platform SDK stuff set up properly (since it comes with it on that version).



None.

Mar 26 2008, 4:06 pm Test Post #5



Okay, well I'll see if I can get the IT guy to get that installed..



None.

Mar 29 2008, 10:13 am ShadowFlare Post #6



If you want to call functions in Windows then it's either installing that or the Windows Platform SDK and getting that set up for Visual C++ 2005 Express, which is more difficult to get working than just simply installing Visual C++ 2008 Express, which includes that SDK and sets it up in the program for you.

BTW, have you considered using anything else as an alternative to GetTickCount?



None.

Options
  Back to forum
Please log in to reply to this topic or to report it.
Members in this topic: None.
[05:47 pm]
NimoStar -- If its any consolation, the human brain would still mop the floor with this bot if it wasn't limited by the mechanical interface
[05:34 pm]
NimoStar -- Well. The bot didn't come up with any new strategy. It just has superhuman micro. Hard to beat that. I reckon even the simplest dedicated chess engines are unbeatable for humans now.
[02:13 pm]
Oh_Man -- all g
[10:54 am]
NudeRaider -- Oh_Man
Oh_Man shouted: NudeRaider did u watch the entire video? it's not one game. it's currently dominating the ladder at number 1 position. do ur research first!
Oops, caught me there, no I haven't. :( I was imagining how the game went. Sorry for that. Watching it now. brb
[10:52 am]
NudeRaider -- NimoStar
NimoStar shouted: They were not "Unprepared" that was their fifth loss in a row against the bot. The other replays are also available
that doesn't mean he was prepared. When humans come around with new strategies it often takes weeks until the pros figure out how to shut it down. Oh_Man that's certainly a way more convincing argument for micro being "too good to beat".
[09:43 am]
DiearAnother -- wirefram
[08:35 am]
NimoStar -- Well, pros showed that long ago... half of zerg pros just ling muta rush
[08:35 am]
NimoStar -- " its shown is that you can trade 1000's of apm to make up for lack of strategy"
[03:25 am]
Oh_Man -- https://youtu.be/R_6bsf9REkY anyone ever tried playing SC ghost?
Please log in to shout.


Members Online: Symmetry