Thread: Helpful Projects

  1. #1
    Registered User Natase's Avatar
    Join Date
    Aug 2001
    Posts
    123

    Helpful Projects

    I'm about to finish my course for the year, and was wondering if anyone had any ideas of things to program as practice so I don't forget everything over the next few months...

    P.S. I'm stuck with console mode till my friend comes through with my pirate copy of MSVC++.

  2. #2
    Registered User *pointer's Avatar
    Join Date
    Oct 2001
    Posts
    74
    Pick up a copy of Pointers on C by Kenneth A. Reek. It's not only a fantastic reference on pointers and the C language in general, but the programming exercises at the end of each chapter can keep your skills sharp.
    pointer = NULL

  3. #3
    Registered User
    Join Date
    Sep 2001
    Posts
    752
    Here's a problem that I enjoyed doing, although it may be too simple...

    Create a program called randwalk.exe, which creates a 10X10 map with the character A in the top left corner. Randomly choose one of the available directions to move, and put B in that map slot, repeat untill you get to Z... two example executions...
    Succesful randwalk...
    Code:
    A...MNOP..
    BCD.LK.Q..
    ..EFGJ.R..
    ....HITS..
    .....VU...
    ....XW....
    ....Y.....
    ....Z.....
    ..........
    ..........
    And unsuccessful randwalk...
    Code:
    ADE.......
    BCF.......
    MLGH......
    NKJI......
    OP........
    VQR.......
    UTS.......
    ..........
    ..........
    ..........
    No where to put the next letter!
    Hope it's understandable.

  4. #4
    Registered User Natase's Avatar
    Join Date
    Aug 2001
    Posts
    123
    Too simple for me?... hardly... it's the simple things that seem to cause me the most problems... probably 'cause I'm being too cocky and try to rush through it

    It's all practice... I think I'm starting to enjoy this programming lark...

  5. #5
    Blank
    Join Date
    Aug 2001
    Posts
    1,034
    Create a compiler so you don't have to pirate!

  6. #6
    Registered User Natase's Avatar
    Join Date
    Aug 2001
    Posts
    123
    Originally posted by Nick
    Create a compiler so you don't have to pirate!
    Eh!? You're telling someone who's pleading for coding practice to go and program their own compiler...

    Maybe I will buy it... Students can live without food for a few months... especially if they just want to know if it's worth it...


    P.S. *pointer:

    Cheers for that... I'll have to hunt that down...

  7. #7
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    Since there are many free compilers at http://www.compilers.net/ which are perfectly adequate for learning, hardly seems any point.
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  8. #8
    Registered User Natase's Avatar
    Join Date
    Aug 2001
    Posts
    123
    Windows compilers? I've been to that site a few times and grabbed a few free compilers... nothing seems to do the trick. I'm looking for something that comes with tutorials and the like.

    Plus all the books I've seen on generic windows programming have examples which are guaranteed to run under MSVC++. There's nothing more annoying than wondering if the program you're learning from is full of bugs or the compiler is either sub-standard or runs differently.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 0
    Last Post: 09-24-2006, 06:26 AM
  2. Projects board
    By VirtualAce in forum A Brief History of Cprogramming.com
    Replies: 8
    Last Post: 12-13-2004, 09:33 AM
  3. Beginner projects
    By MagSteve in forum C++ Programming
    Replies: 4
    Last Post: 05-05-2004, 02:04 AM
  4. Projects
    By Unregistered in forum C++ Programming
    Replies: 2
    Last Post: 05-01-2002, 12:40 PM