Thread: Ideas?

  1. #1
    Novice C++ Programmer
    Join Date
    Nov 2003
    Posts
    96

    Ideas?

    I know this sounds silly but I've actually spent the last 30 minutes or so searching for something to do with C (tried searching for console application ideas and etc on Google, found nothing). I just learned all the basics and I DO NOT want to forget any of it. But I can't think of any useful console application to make. Anyone have any suggestions of what I could make with the ANSI standard C library? Just some ideas please. That would be a BIG help. Thanks.

  2. #2
    Registered User kinghajj's Avatar
    Join Date
    Jun 2003
    Posts
    218
    Make a program that can:
    -get's an Employee information (i.e. Name, ID, Job, etc.) and then save the information to a file
    -read employee information from the file, and display it in a neat & clean manner
    01011001 01101111 01110101 00100000 01110100 01101111 01101111 1101011 00100000 01110100 01101000 01101001 01110011 00100000 01101101 01110101 01100011 01101000 00100000 01110100 01101000 01101101 01100101 00100000 01110100 01101111 00100000 01110010 01100101 01100001 01100100 00100000 01011001 01101000 01101001 01110011 00111111 00100000 01000100 01100001 01101101 01101110 00100001 00000000

  3. #3
    Registered User
    Join Date
    Feb 2004
    Posts
    72
    How about a calculator?

    You ask for an expression eg.
    1 + 5
    48 / 2
    1 + 5 / 5
    1 / 0

    and produce the answer
    1 + 5 = 6
    48 / 2 = 24
    1 + 5 / 5 = 2
    1 / 0 is an invalid expression

  4. #4
    Registered User kinghajj's Avatar
    Join Date
    Jun 2003
    Posts
    218
    yeah, that's a good one too. Maybe a calculator is a little harder, too :/
    both are good practices.

    it took me about 10 minutes to make my idea, so it shouldn't take you too long.
    01011001 01101111 01110101 00100000 01110100 01101111 01101111 1101011 00100000 01110100 01101000 01101001 01110011 00100000 01101101 01110101 01100011 01101000 00100000 01110100 01101000 01101101 01100101 00100000 01110100 01101111 00100000 01110010 01100101 01100001 01100100 00100000 01011001 01101000 01101001 01110011 00111111 00100000 01000100 01100001 01101101 01101110 00100001 00000000

  5. #5
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    An implementation of the "Game of Life"?
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  6. #6
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    Since you know the basics of C programming, you could go a step higher and get a book on algorithms and datastructures (or read about it on the internet) and do the excercises it contains. This would be both a useful practice of C programming and you'd learn about some very useful topics, like searching and sorting data, binary trees etc.

    Shiro

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Ideas, how do you get them? xD
    By Akkernight in forum A Brief History of Cprogramming.com
    Replies: 10
    Last Post: 01-22-2009, 03:53 AM
  2. cool ideas for a game
    By Shadow12345 in forum Game Programming
    Replies: 7
    Last Post: 05-18-2004, 08:37 PM
  3. idea's idea's idea's
    By mithrandir in forum A Brief History of Cprogramming.com
    Replies: 10
    Last Post: 04-29-2002, 12:30 AM
  4. Small app ideas
    By dirkduck in forum A Brief History of Cprogramming.com
    Replies: 4
    Last Post: 02-15-2002, 08:57 PM