vote up 22 vote down star
16

I am teaching myself C, with several books as well as online tutorials. I am in the middle of Greg Perry's book Absolute Beginner's Guide to C. I know I learn best by doing, so I need to start writing my own code. My problem is that I am a little stymied by not being able to come up with ideas for programs that will exercise my skills and not be beyond them. Any suggestions would be welcome.

Update: I have entered a Code-golf, written a small number guessing game, put a couple of great books on my wishlist, and explored some great sites that will challenge me for probably years to come. Thanks all!

Update: Finished my first Project Euler problem.

flag
6  
In your question and other comments, you have mentioned several books on C, but none of the ones you mention are THE book on C: "The C Programming Language" by Kernighan and Ritchie. In addition to being one of the best technical books in any subject, each section ends with a series of exercises that are exactly what you're looking for. – Kevin Nov 2 at 23:32
Thank you! I will add it to my Amazon wishlist tonight. – Laura Nov 3 at 0:59
+1 for awesomeness – Kris Nov 9 at 14:56

28 Answers

vote up 15 vote down check

Click this: code-golf

Enter every challenge that has at least 10 upvotes even if you are weeks or months late, and even if your solution isn't so great. (You don't have to actually post it unless you want to, but get each one working...)

We will be watching.


Update: This question is in the most-viewed and highest-voted lists. This answer is in the most-commented list. Laura has already entered her first challenge, so at least it is leading to practice.

Code-golf on stackoverflow may be a bit different than elsewhere

The c-g scene is a bit deeper than it sounds, especially as it relates to SO.

Yes, there are some "true Perl c-g" entries. But most entries are not Perl. I enter in Ruby usually; most people enter in the language they are currently most interested in, and the objective is not as simple as just beating Perl. (Though I do keep trying.)

C-g has zillions of benefits; the character-crunching thing is an entirely optional part of the activity.

In fact, often most of the entries are uncompressed, and they are in Java and C# and other languages that have no chance of winning. So why is that? It's because c-g is more than a golf-scoring contest. We get at least as many entries from people who are learning or showing off their favorite language than we do from people who are writing crunched Perl. And that's great.

Obviously, no educational opportunity will be perfect. One is unlikely to be building binary trees or hash tables, but it does seem like C-G on SO is worth it for many people.

link|flag
I found the oldest post - Fizz buzz - and am compiling now... – Laura Nov 2 at 21:59
Excellent. This is exactly how I learned Ruby. I have written in another question about why I think code-golf is so helpful: stackoverflow.com/questions/1652800/… – DigitalRoss Nov 2 at 22:07
13  
I feel this is a terrible way to learn to program. It pretty much throws all correct software engineering practices and conventions out the window. – Marcin Nov 2 at 23:13
2  
@Marcin: agreed. The 'challenge' here is to code in the fewest characters, not in the most elegant algorithm. The problems themselves are rarely challenging to solve; the main challenge is ripping our as many characters as possible. Fun for old heads, but not a great way to learn. – Kirk Broadhurst Nov 2 at 23:19
1  
Code golf is poor for someone "teaching themselves C". The ideas themselves may be useful for an assignment, but only if you remove completely the focus on writing something with the fewest lines of code. – Ash Nov 3 at 6:13
show 4 more comments
vote up 41 vote down

http://projecteuler.net/

Good for any language. (Bring your own math library)

link|flag
This could keep me very busy. – Laura Nov 2 at 21:31
+1 For Project Euler. This is always where I start when I want to learn a new language. – Joey Nov 2 at 21:34
Make your own math library - even simply creating your own BigInteger class will give some useful experience. +1 for Project Euler. – Callum Rogers Nov 2 at 22:02
I am going to use that site - thanks! – Laura Nov 4 at 3:45
vote up 0 vote down

Implement a doubly-linked list using a single pointer.

link|flag
Haven't gotten to pointers yet - I think that's a couple chapters away, so I'll read fast and try it tonight. – Laura Nov 2 at 21:29
I don't think you'll get it by night. It's quite difficult for the first time... – f0b0s Nov 2 at 21:30
1  
What's being suggested is an "XOR" linked list. It's an interesting mental exercise to impress the idea that pointers are really just numbers, and you can do math on them (including XOR). You should understand why it works, but it's something you should never actually do in real code unless you've got a really good reason. And probably not even then. – Casey Barker Nov 3 at 17:37
Good points... But the question was around "coding exercises," and I think this came up in almost every C class I took. – jheddings Nov 3 at 17:53
vote up 9 vote down

Take Kernigan & Ritchie book. There are a lot of really good exercises.

link|flag
vote up 8 vote down

Silly simple example, with little to no practicle use:

Write an application that will accept a line of text input, and output the words in the reversed order.

Example:

Input - "The world is a strange place!"

Output - "place! strange a is world The"

  • Use only the memory needed to store the original string (no temp variables, etc.)
link|flag
This is actually a very good problem! – Jonas Nov 2 at 21:36
Well, the first is just string tokenization, but the bonus part does make it a little trickier. – quillbreaker Nov 2 at 22:08
Slight variation of this, accept a line of text input and check if the input is a palindrome (the same when reversed). Kinda fun when you add the "no temp variables" restriction! – Will Boyce Nov 17 at 11:43
vote up 3 vote down

You can write a simple "game" using C - such as blackjack or poker - don't worry about AI just write an engine that would enable several players to play the game on the same computer.

Another good "start project" is a simple calculator - write a calculator that receives a string and returns a result. Assume you'll always get a string of number op number (.i.e. "2 + 2") and build from there.

link|flag
I made the "Guess the Number" game today. Will start working on pointers tomorrow. – Laura Nov 4 at 3:47
vote up 0 vote down

A Hello World program :)

A program that prints the factorial of a given number

A program that takes in input a list, creates a copy of a list and reverses the original list.

An implementation of a Bubblesort (Horrible algorithm, but good for practice) http://en.wikipedia.org/wiki/Bubble%5Fsort

link|flag
vote up 0 vote down

All good C books I read (and most bad ones) have exercises, usually at the end of every chapter/section. I'm not familiar with your book, but it also probably has exercises.

link|flag
There are many examples, but not exercises. :( However, I never buy just one book on a topic, so I will also start C in 21 days and check to see if they have exercises. – Laura Nov 2 at 21:37
Try the online judges line Uva, SPOJ, and ProjectEuler also. They are a bit tougher for an absolute beginner so I held back from suggesting them. – MAK Nov 2 at 22:08
vote up 3 vote down

Go in this sequence

  1. Given an integer, determine whether it is a prime number or not.
  2. Given an integer n , generate a Fibonacci series upto n
  3. Then do some array practice- sorting algorithms-bubble.sequential sorts etc.
link|flag
Learned about sequential sorting today, will try it out. – Laura Nov 4 at 3:48
Did you try bubble sort?Thats the first sorting method that one should start with. – Ravi Nov 4 at 5:02
vote up 0 vote down

Read in matrix data from files specified on the command line. Perform some operation (for example, multiplication, transpose, inverse). Write data out to a file.

This will give you practice with file I/O, dynamic memory allocation, looping over arrays, and optimization.

link|flag
vote up 1 vote down

I'm a visual learner so when I started out I was fascinated with animation.

Along those lines, I have 3 progressively difficult exercises:

1.) Create a bouncing ball animation that bounces off the edges of the screen.

2.) Create 100 bouncing balls that all do the same thing but in different directions. You'll have to leverage arrays to do this.

3.) Create an n-body simulation with these 100 balls where every ball is attracted to every other ball by gravity. You'll again have to use an array but with a nested loop to handle the gravity. (I have a few tutorials on the subject if you want to see my implementation.)

link|flag
vote up 4 vote down

CodeChef is a good option.

Programming Challenges, which is an option Programming Challenges

link|flag
It's now on my amazon wish list. thx – Laura Nov 4 at 18:09
I hope you enjoy it. :-) – Frank Nov 4 at 20:57
vote up 0 vote down

A program to find prime numbers from 1 to x where the user fills in the X?

You could also give the user the option to write the results to the disk instead of the standard out.

Once the basic program is working, you could then add threading to make it work faster....

link|flag
vote up 16 vote down

Write a text adventure.

printf("You are standing in front of a building.\n");

EDIT: Not sure why the hate - did you think I was being facetious? That line was just to get him started, not meant to be the whole thing. If you think it's a bad idea, all right, but this is what I did to get started programming.

link|flag
1  
This is actually a good project! – pmg Nov 2 at 21:45
Thanks, @pmg. I agree. – Grumdrig Nov 2 at 21:53
+1, any smallish project is good experience. A simple game is a particularly good idea. – MAK Nov 2 at 22:11
Writing a text adventure game was my first 'larger' C project when I was learning. – Coyote Nov 3 at 18:37
You are standing in an open field west of a white house, with a boarded front door. There is a small mailbox here. en.wikipedia.org/wiki/Zork_I – KM Nov 4 at 18:32
show 1 more comment
vote up 2 vote down

Try implementing your own printf() in terms of putchar() and/or fputs(stdout). This will require you to do some simple string parsing, and will involve some nested loops, quite a lot of conditionals, and some pointer arithmetic (which you'll need to learn to be proficient in C anyway). You can start with handling %s, %u, %d and %f, and then gradually add support for more specifiers.

link|flag
vote up 2 vote down

Make a program that can multiply arbitralily long (well ... 10 thousand digits) numbers.

I think you'll need

  • data structures
  • malloc (and friends) for memory management
  • math
  • possibly string management

Remember to make several source files, separated by subject, so that you can reuse them for other projects.

link|flag
vote up 3 vote down

So you want to drill seriously huh? click here

link|flag
Whoa. I don't think I'm ready for that. But maybe someday. – Laura Nov 3 at 1:02
I used to think that I was unable to program at that level... Henry Ford said that attitudes are more important than aptitudes... – JPCF Nov 3 at 1:14
vote up 27 vote down
int a;
a = 1; // an assignment
link|flag
Well played, Mr. Edwards. Well played. – Kevin Nov 2 at 23:29
3  
Damn, I wanted to write that. – Konrad Rudolph Nov 3 at 8:56
+1 for clean answer. – Andrejs Cainikovs Nov 3 at 9:01
tooooooing!! 8-S – Oscar Reyes Nov 7 at 2:00
vote up 0 vote down
  1. Write a program which will calculate and list the moves necessary to solve the Tower of Hanoi problem for three discs and three rods.
  2. Modify the program to solve the problem with four discs.
  3. Modify the program to solve the problem for a number of disks specified on the command line.
link|flag
vote up 4 vote down

http://www.topcoder.com/tc?module=ProblemArchive

link|flag
Probably the best database of programming questions. You can even check your solution... – Marcin Nov 2 at 23:17
vote up 0 vote down

Implement parts of the standard library yourself. strcpy is a good one for getting your head around pointers and strings. Other functions vary in their complexity and focus.

Obligatory disclaimer: Don't use your own implementations -- just test them. If you actually need to do a strcpy (or anything else that's in the standard library), use the standard library.

link|flag
vote up 0 vote down

Try doing "Object Oriented" design in C: If you look at the FILE pointer stuff in the standard library, you'll find indications on how to dynamically call a "method" on an "object". Try implementing your own little set of "objects" and get the feeling of this mechanism.

link|flag
vote up 1 vote down

Once you are fairly comfortable with the basics of C, develop a basic text editor. It will give you a chance to implement pretty much all the basic features in c , along with pointers.

link|flag
vote up 0 vote down

I would check out the problems here:Bring You Own Code I regularly visit this site and learn about what NOT to do as a programmer. Recently they started adding these little challanges with responses posted in the comments. You can compare you results with others in you desired language and really learn a lot.

link|flag
vote up 1 vote down

Write a text version of "Don't Press the Red Button". That's how I started my son on Python...

link|flag
I must be missing something...is there an explanation of some sort or do I just not get it? – Laura Nov 4 at 3:43
Did you play the game? This can start as simply an infinite loop of "Don,t press <Enter>", then go into arrays, and finally file IO. Then may be some text-based screen painting using ncurses. And finally graphics. – Arkadiy Nov 4 at 18:51
I haven't laughed like that in years... Thanks for the link! – Liran Orevi Nov 5 at 22:03
What game? There's a big red button with Don't Press the Red Button over it and that is all. Wait...I'm supposed to press the button, right? – Laura Nov 9 at 14:50
vote up 0 vote down

Create a support schedule: given number of days to cover and number of people, create a fair schedule to cover the days. Introduce complications like no early and late support on same day, no late support more than 2 days in a row and so on.

link|flag
vote up 0 vote down

Write a tail program command for Windows and make it accept -f option.

:)

Simple enough and very useful.

You may find the source code very easily but trying to figure out how to do it your self would be valuable

link|flag
vote up 1 vote down

if you read C for dummies then you can get more assignment

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.