Skip to primary content
Skip to secondary content

C For Dummies Blog

Main menu

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

Author Archives: dgookin

Post navigation

← Older posts
Newer posts →

The Marvelous popen() Function

Posted on June 20, 2015 by dgookin
Reply

To launch and run another program from within your code, use the system() function. When your code must examine or save that program’s output, use the popen() function.
Continue reading →

Posted in Lesson | Leave a reply

Execute and Leave

Posted on June 13, 2015 by dgookin
Reply

The system() function allows you to run one program from within another. If it’s your desire to launch another program and have your program quit, you can immediately follow system() with an exit() function. Or you can go out of your way and use the oddball execl() function.
Continue reading →

Posted in Lesson | Leave a reply

Let’s Go Bowling – An Entire Game – Solution

Posted on June 8, 2015 by dgookin
Reply

To make the conversion between simulating a single frame of bowling and an entire game isn’t that simple, which is mostly due to calculating the dreaded 10th Frame.
Continue reading →

Posted in Solution | Leave a reply

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

Let’s Go Bowling – An Entire Game!

Posted on June 1, 2015 by dgookin
Reply

In last month’s Exercise, the assignment was to craft a single frame in a game of bowling. This time, you need to stitch together 10 frames to simulate bowling an entire game.
Continue reading →

Posted in Exercise | 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

Let’s Go Bowling – Solution

Posted on May 8, 2015 by dgookin
Reply

You may find my solution for this month’s Exercise to be more complex than necessary, but there’s a method to my madness.
Continue reading →

Posted in Solution | Leave a reply

Post navigation

← Older posts
Newer posts →

Recent Posts

  • Storing and Interpreting Mouse Input
  • Where is the Mouse?
  • Pulling Numbers from a String – Solution
  • What is the Mouse Doing?
  • Pulling Numbers from a String

Recent Comments

  • dgookin on Reading Raw Input
  • Chris Webb on Reading Raw Input
  • dgookin on Is It a “Real” Triangle? – Solution
  • Chris Webb on Is It a “Real” Triangle? – Solution
  • dgookin on A Colorful Hexdump

Meta

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

Copyright © 1997-2026 by QPBC.
All rights reserved

Proudly powered by WordPress