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:59 am]
NudeRaider -- *is
[05:17 am]
NudeRaider -- despite all its flaws the sound design its fantastic
[10:29 pm]
Oh_Man -- homeworld 3 = massive disappointment
[2024-5-14. : 10:05 am]
Moose -- ya
[2024-5-14. : 5:23 am]
zsnakezz -- yes
[2024-5-12. : 8:51 pm]
l)ark_ssj9kevin -- Are you excited for Homeworld 3?
[2024-5-12. : 8:44 pm]
l)ark_ssj9kevin -- Hi Brusilov
[2024-5-12. : 4:35 pm]
O)FaRTy1billion[MM] -- Brusilov
Brusilov shouted: Hey, what happened to EUDDB? Is there a mirror for it somewhere? Need to do a little research.
my server that was hosting it died
[2024-5-10. : 8:46 pm]
NudeRaider -- Brusilov
Brusilov shouted: Hey, what happened to EUDDB? Is there a mirror for it somewhere? Need to do a little research.
https://armoha.github.io/eud-book/
[2024-5-10. : 8:36 am]
Brusilov -- Hey, what happened to EUDDB? Is there a mirror for it somewhere? Need to do a little research.
Please log in to shout.


Members Online: 3harperc7822yh5, 8carolinec541fh4, Vrael, Oh_Man