Skip to primary content
Skip to secondary content

C For Dummies Blog

Main menu

  • C For Dummies (home)
  • History
  • Series
  • Supplemental
  • Blog Miscellany

Category Archives: Lesson

Post navigation

← Older posts
Newer posts →

The Joys of Iteration

Posted on June 6, 2015 by dgookin
Reply

Suppose that you’re testing code and need to run a program six times in a row. You could keep repeating the program, running it multiple times, but why not write a utility that does the same thing? That would be a good and practical way to put the system() function to work.
Continue reading →

Posted in Lesson | Leave a reply

Hello, System

Posted on May 30, 2015 by dgookin
Reply

One thing that continues to puzzle me about learning the C language is how frequently beginners use the system() function. Is it a crutch? Is it a necessity? What’s the allure of this function that makes it show up in beginner code?
Continue reading →

Posted in Lesson | Leave a reply

Before You Say Goodbye . . .

Posted on May 23, 2015 by dgookin
Reply

The standard C library contains a lot of interesting and unusual routines. Some can really put the fun into function. One of them I’ve rarely used, but which can be extremely handy, is atexit().
Continue reading →

Posted in Lesson | Leave a reply

Build Your Own strcasestr() Function

Posted on May 16, 2015 by dgookin
Reply

I was a bit surprised the other day. I’d written code on my Macintosh and tried to run it on the PC. Because I usually write generic stuff, I figured that the code would compile and run on both systems. But it didn’t compile.
Continue reading →

Posted in Lesson | Leave a reply

Parsing the Command Line IV

Posted on May 9, 2015 by dgookin
Reply

Command line options often sport their own options or settings. For example, tab width might be set by specifying the tabwidth option followed by a value. No hard and fast rules exist for how such an option is set, but I’ve seen it happen in one of three ways:
Continue reading →

Posted in Lesson | Leave a reply

Parsing the Command Line III

Posted on May 2, 2015 by dgookin
Reply

Your code must consider whether or not command line options are present, that the user may type the options in any order, and that some or all of the option could be incorrect. That makes for a lot of processing, but it’s also forgiving and users prefer the flexibility.
Continue reading →

Posted in Lesson | Leave a reply

Parsing the Command Line II

Posted on April 25, 2015 by dgookin
Reply

When processing the main() function’s arguments, you must keep in mind the possibilities. Options are, after all, options. They might be there, they might not.
Continue reading →

Posted in Lesson | Leave a reply

Parsing the Command Line I

Posted on April 18, 2015 by dgookin
Reply

About a year ago, I wrote a post on reading the command line arguments. It’s a process that takes place all the time, not only when running programs in a terminal window but also for graphical operating systems. Knowing how to manipulate command line arguments is important.
Continue reading →

Posted in Lesson | Leave a reply

Quicksorting Strings, Pointer Edition

Posted on April 11, 2015 by dgookin
Reply

I’ll confess that when I use a quicksort to sort and array of strings, I don’t use the C Library’s qsort() function. No, I write my own. The problem is that when sorting an array of strings, the qsort() function’s compar argument is a pain in the butt to craft properly.
Continue reading →

Posted in Lesson | Leave a reply

Quicksorting Strings

Posted on April 4, 2015 by dgookin
Reply

The quicksort deftly handles vast quantities of values. It can also sort strings, but that’s where things can get weird.
Continue reading →

Posted in Lesson | Leave a reply

Post navigation

← Older posts
Newer posts →

Recent Posts

  • Extracting Data Chunks
  • C Blog 13th Anniversary
  • Colorful Data Chunks
  • A Little Bit Off the Sides – Solution
  • Working with Data Chunks

Recent Comments

  • dgookin on C Blog 13th Anniversary
  • M.Stumpfl on C Blog 13th Anniversary
  • Chris Webb on C Blog 13th Anniversary
  • M.Stumpfl on A Little Bit Off the Sides – Solution
  • dgookin on A Little Bit Off the Sides – Solution

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Copyright © 1997-2026 by QPBC.
All rights reserved

Proudly powered by WordPress