Thread: noob

  1. #31
    1337
    Join Date
    Jul 2008
    Posts
    135
    I am clueless, please give me a hint or clue

  2. #32
    Registered User
    Join Date
    May 2008
    Location
    Paris
    Posts
    248
    Code:
    I am clueless
    so are we

  3. #33
    Registered User
    Join Date
    Dec 2006
    Location
    Canada
    Posts
    3,229
    with all the time you have spent in here, you would've gotten a lot further reading a tutorial as suggested by everyone here

  4. #34
    Registered User
    Join Date
    Apr 2008
    Posts
    890
    This is the most epic spoon feeding lesson I've ever witnessed.

  5. #35
    1337
    Join Date
    Jul 2008
    Posts
    135
    Code:
    #include <cstdlib>
    #include <iostream>
    #include <string>
    using namespace std;
    
    int main(int argc, char *argv[])
    {
        
        string x = "How are you?";
        for (int x=0;x<10;x++);
        
        
        
        {
             cout<<"how are you"<< endl;
        }
         
        
        
        
        
        
        cin.get();
        return EXIT_SUCCESS;
    }

    this is my mistake
    for (int x=0;x<10;x++);
    got it. no semi colon after loops

  6. #36
    Deathray Engineer MacGyver's Avatar
    Join Date
    Mar 2007
    Posts
    3,210
    Just give up programming.

  7. #37
    Malum in se abachler's Avatar
    Join Date
    Apr 2007
    Posts
    3,195
    Quote Originally Posted by valthyx View Post
    got it. no semi colon after loops
    FAIL. Please stop posting, I have a headache already and its only tuesday

    Im at work too, so I cant ........ myself laughing, which was the other reaction that came to mind.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Noob Q: How to read a value of a byte in binary?
    By Hitsuin in forum C++ Programming
    Replies: 2
    Last Post: 06-11-2009, 02:46 PM
  2. Noob printf question
    By lolguy in forum C Programming
    Replies: 3
    Last Post: 12-14-2008, 08:08 PM
  3. I'm a noob and I need help.
    By nifear4 in forum C Programming
    Replies: 17
    Last Post: 10-14-2008, 01:20 PM
  4. noob needs help!!!!:(
    By tykenfitz in forum C Programming
    Replies: 1
    Last Post: 07-10-2005, 08:49 AM
  5. noob: compiling error... plz help!
    By chosii in forum C Programming
    Replies: 2
    Last Post: 05-10-2002, 05:53 AM