Thread: Tutorial for beginners

  1. #1
    Registered User
    Join Date
    Mar 2002
    Posts
    10

    Talking Tutorial for beginners

    Hey there all
    I started writing a tutorial at
    www.sleepwalkers.org
    named
    Getting Wet With C++

    Can you guys just give it a little browse through and lemme know what you thin please

    Thanks zbap

  2. #2
    geek SilentStrike's Avatar
    Join Date
    Aug 2001
    Location
    NJ
    Posts
    1,141
    Code:
    #include < iostream.h >
    
    int main()
    {
    cout << "i hate the way this black screen jumps up and bites me and then disappears ";
    
    return 0;
    }
    The code isn't standard, it's old style C++. If you are writing a tutorial now, I'd hope it would be at least standard as of the time of writing.

    Code:
    #include <iostream>
    
    int main() 
    {
        std::cout << "i hate etc...";
       
        return 0;
    }
    The chapter termed operator overloading doesn't talk at all about overloading, only about operators, and doesn't give any example code of using them.
    Prove you can code in C++ or C# at TopCoder, referrer rrenaud
    Read my livejournal

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. My new website
    By joeprogrammer in forum A Brief History of Cprogramming.com
    Replies: 19
    Last Post: 03-17-2006, 07:38 PM
  2. Cprog tutorial: Design Patterns
    By maes in forum C++ Programming
    Replies: 7
    Last Post: 10-11-2004, 01:41 AM
  3. Tutorial review
    By Prelude in forum A Brief History of Cprogramming.com
    Replies: 11
    Last Post: 03-22-2004, 09:40 PM
  4. Problem with tutorial (Vector class)
    By OdyTHeBear in forum C++ Programming
    Replies: 4
    Last Post: 12-18-2002, 02:49 PM
  5. My DirectInput tutorial....
    By jdinger in forum A Brief History of Cprogramming.com
    Replies: 1
    Last Post: 06-18-2002, 11:32 PM