Thread: Late on problem

  1. #16
    Registered User
    Join Date
    Dec 2004
    Posts
    10
    these chat boards aren't very popular are they

  2. #17
    Registered User
    Join Date
    Dec 2004
    Posts
    10
    there is only like 2 registered users on here

  3. #18
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >even this websites tutorials don't tell me to put them
    Really. I could have sworn that all of the code examples in those tutorials accounted for the std namespace when I wrote them! But I guess you have to be slapped in the face with it right away:
    Lesson 1: The basics of C++(Printable Version)

    That namespace crap is important.

    This tutorial is for everyone; if you've never programmed before, or if you have extensive experience programming in other languages and want to expand into C++. It is for everyone who wants the feeling of accomplishment from a working program.
    Nice game though, very entertaining.

    p.s. Is our month up yet?
    My best code is written with the delete key.

  4. #19
    Registered User
    Join Date
    Dec 2004
    Posts
    10
    what month.

  5. #20
    Registered User
    Join Date
    Dec 2004
    Posts
    10
    it's a very accurate dog simulation

  6. #21
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879
    >>these chat boards aren't very popular are they
    >>there is only like 2 registered users on here
    It's not a chat board. And there's around 12,000 registered users.

    >>what month.
    Stick around, follow the rules, put away the "it works for me so stfu" attitude, ask smart questions, and say thanks when people help you even though you sure as hell didn't deserve it, and you might find out the nice way. Otherwise, when the month is over, you'll find out the other way.

    On a lighter note, we're not really a bunch of fascist anti-newbie nazis, as I may have given you the impression of. Your posts have just irritated me somewhat.

    Welcome to the boards.
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

  7. #22
    VA National Guard The Brain's Avatar
    Join Date
    May 2004
    Location
    Manassas, VA USA
    Posts
    903
    I think the next step.. if possible.. would be to make a similar program using women instead of man's best friend.
    • "Problem Solving C++, The Object of Programming" -Walter Savitch
    • "Data Structures and Other Objects using C++" -Walter Savitch
    • "Assembly Language for Intel-Based Computers" -Kip Irvine
    • "Programming Windows, 5th edition" -Charles Petzold
    • "Visual C++ MFC Programming by Example" -John E. Swanke
    • "Network Programming Windows" -Jones/Ohlund
    • "Sams Teach Yourself Game Programming in 24 Hours" -Michael Morrison
    • "Mathmatics for 3D Game Programming & Computer Graphics" -Eric Lengyel

  8. #23
    yes, I'm registered!!! algi's Avatar
    Join Date
    Nov 2004
    Location
    Ipswich
    Posts
    161
    you never gave me a greeting hunter

  9. #24
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    >>> even this websites tutorials don't tell me to put them

    The tutorials here that use iostrem have to do something to bring, for example cout, into scope. Preceeding cout with std:: brings it into scope. Another way to do this is by using the entire namespace, a "using namespace std" line. Both will work. Right now <iostream.h> works as well, however, there will come a time when it will no longer be the case.

    The reason people are advising you to use one of the namespace methods is because they know that this is a better solution.
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Need help understanding a problem
    By dnguyen1022 in forum C++ Programming
    Replies: 2
    Last Post: 04-29-2009, 04:21 PM
  2. Memory problem with Borland C 3.1
    By AZ1699 in forum C Programming
    Replies: 16
    Last Post: 11-16-2007, 11:22 AM
  3. Someone having same problem with Code Block?
    By ofayto in forum C++ Programming
    Replies: 1
    Last Post: 07-12-2007, 08:38 AM
  4. A question related to strcmp
    By meili100 in forum C++ Programming
    Replies: 6
    Last Post: 07-07-2007, 02:51 PM
  5. WS_POPUP, continuation of old problem
    By blurrymadness in forum Windows Programming
    Replies: 1
    Last Post: 04-20-2007, 06:54 PM