Search:

Type: Posts; User: nevermind

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    967

    thanks

    Cheers, Monster!
  2. Replies
    3
    Views
    967

    regarding headers

    I wrote a program that used the <ctime> header file. It compiled fine in Borland but when I compiled it in Unix it just wouldnt execute the time stuff (I am certain my code is right).

    What could I...
  3. Thread: books

    by nevermind
    Replies
    4
    Views
    1,054

    thinking in c++ vol 1 and 2

    Check out this site: www.bruceeckel.com

    You can download free online versions of Bruce Eckels book Thinking in C++, Volumes one and two.

    I am reading Vol1 now, it has plenty examples and is...
  4. Thread: Compiling

    by nevermind
    Replies
    2
    Views
    1,126

    hmm

    Ensure that the file you are trying to open is .CPP or else DEvC++ doesnt see it as a C++ file. You have to then choose 'All files' in the Open file dialog box for C++ files with extensions like .CC...
  5. Replies
    10
    Views
    1,176

    Well check your settings in the compiler. You...

    Well check your settings in the compiler.

    You are able to choose where you want to output your exe files. Then its simply the matter of finding it and executing it.

    I hope this is what your...
  6. Replies
    4
    Views
    1,291

    In oder to avoid errors always include function...

    In oder to avoid errors always include function prototypes before teh main function like so


    int Area (int , int);
    OR
    int Area (int a, int b);

    The declaration or prototype simply tells...
  7. Replies
    10
    Views
    1,686

    your right

    Yeah I dont think it matters that much in loops however makes a big difference in statements.

    Also thats where C++ comes from ... an increment to C

    Thought I'd share that ;)
  8. Replies
    4
    Views
    1,512

    Standard C++ library

    Hello,

    I would appreciate a link to a list of standard C++ libraries.

    I have an extremely old compiler (I still have to use iostream.h), and would like to be able to port to different...
  9. Thread: Bruce Eckel

    by nevermind
    Replies
    2
    Views
    3,124

    Bruce Eckel

    Hi everyone,

    I have just started to learn C++ with the book "Thinking in C++" by Bruce Eckel. It's a great book, has two volumes, both available for free download at www.bruceeckel.com

    It is...
  10. Replies
    7
    Views
    1,739

    Using Vectors

    Hi, I think this should help:


    //using vectors to open file and count lines
    #include<iostream>
    #include<fstream>
    #include<string>
    #include<vector>

    int main()
  11. Replies
    10
    Views
    2,530

    Poll: I'd like some more tutorials bit the problem...

    I'd like some more tutorials bit the problem solving sounds great!
  12. Replies
    8
    Views
    1,503

    Thank you all very much

    Thanks for all your help!

    It really helped me today.
  13. Replies
    2
    Views
    1,600

    woohoo

    Thanks Hammer!

    Your a legend!!
  14. Replies
    2
    Views
    1,600

    Error in compiling G++

    I got rid of all my errors since my last post, thanks guys!

    But but ... just one last error ... please help!

    [code]
    g++: Compilation of header file requested
    g++: Compilation of header file...
  15. Replies
    8
    Views
    1,503

    Hmmm ... yeah I'll do that thanks for the tip.

    Hmmm ... yeah I'll do that thanks for the tip.
  16. Replies
    8
    Views
    1,503

    errors

    Clock1.cc:26: `hh' undeclared (first use this function)
    Clock1.cc:26: (Each undeclared identifier is reported only once
    Clock1.cc:26: for each function it appears in.)
    Clock1.cc:27: `mm'...
  17. Replies
    8
    Views
    1,503

    whoops

    Oh no forgot about the tags sorry bout that ... will not forget!

    Cheers!
  18. Replies
    8
    Views
    1,503

    Compilation Errors

    I have 5 files Clock.cc Clock1.cc Clock.h Clock1.h and Main.cc

    Clock1 inherits from Clock.

    I have tried to compile my program in Borland and it works nicely (but as one file Clock.cpp not as a...
  19. Thread: world clock

    by nevermind
    Replies
    1
    Views
    4,284

    world clock

    I had posted a question regarding a clock program earlier today 23-10-2002 (Please Help with progam)

    Following this I want to create a world clock with five world city times. I know I will use...
  20. Replies
    3
    Views
    1,039

    thanks

    Thanks for the help ... I know how to make my original code even cleaner than before. Woohoo! thanks everyone.:)
  21. Replies
    3
    Views
    1,039

    Please help with program

    A twelve hour clock; stores hours, minutes, seconds, AM or PM. Intitial hours, mins, secs are 0 by default. User is requested for the entries. Then the clock is advanced by seconds one by one.

    The...
  22. Replies
    2
    Views
    1,269

    Thanks

    Thanks a lot, it clears it up.

    APPRECIATE YOUR HELP!
  23. Replies
    2
    Views
    1,269

    Please help with compile for gcc

    Hi, the following program runs fine with Borland. It is a twelve hour clock. What it does is requests hours, mins, secs and then waits for user input. When user hits a key the program stops running...
Results 1 to 23 of 23