Search:

Type: Posts; User: meeloff

Search: Search took 0.01 seconds.

  1. Thread: error problems

    by meeloff
    Replies
    3
    Views
    1,010

    fixed it thanks your input helped

    fixed it

    thanks your input helped
  2. Thread: error problems

    by meeloff
    Replies
    3
    Views
    1,010

    error problems

    I am getting an undeclared identifier error when everything is declared correctly:

    source.cpp

    const int bigger = 150000;
    int bubbleArray[bigger];
    BubbleSort(bubbleArray, size);

    header.h
  3. Thread: Time

    by meeloff
    Replies
    5
    Views
    1,116

    Thank you Very much

    Thank you Very much
  4. Thread: Time

    by meeloff
    Replies
    5
    Views
    1,116

    so this: time_t a = time(NULL);...

    so this:

    time_t a = time(NULL);
    cout<<a<<endl;

    will output the time.
  5. Thread: Time

    by meeloff
    Replies
    5
    Views
    1,116

    Time

    When using the time function from the header file, ctime, What should I put between the brackets? I looked at msdn online and it showed me time_t time( time_t *time) but I am not totally sure what...
  6. Replies
    3
    Views
    1,296

    Something like this: #include ...

    Something like this:


    #include <cstdlib>
    #include <iostream>

    void main()
    {
    int i;
    int size = 50;
  7. Replies
    3
    Views
    1,296

    arrays of random integers & time

    I have two questions out there for those who can respond.

    1. How do I create a large array full of random integers?

    2. How do I call the time so I can use it for checking the speed of a...
  8. Replies
    2
    Views
    1,111

    Yes to the first, and there shouldn't be a...

    Yes to the first, and there shouldn't be a problem with using the same file for both variables. One is an input variable the other output. please inform me if I am wrong.
  9. Replies
    2
    Views
    1,111

    Help with loading data.

    ***Warning this is for homework.

    I am on the final debug for a program of mine. The program is designed to restart your computer upon going beyond the boundaries of your stack. The stack is an...
  10. Replies
    2
    Views
    1,088

    reading files into linked lists

    First off, this is for homework and I mearly want a shove in the right direction. If its with a nudge or a dump truck makes no nevermind to me.

    What I want to do is have a class member function...
  11. Replies
    4
    Views
    1,147

    Ahh the helpful FAQ

    I am somewhat new to programming in C++, but not so much that I can't navigate it well. I go between 2 different versions of Visual C++ IDE, Visual C++ 6 and Visual C++.net 2002 std. I tried the...
Results 1 to 11 of 11