Home > Articles > Web Development

The First Programs to Write in Any New Language

What first programs should you use when you start learning a new programming language? Brian Overland suggests a path to learning a new language, starting with "Hello, World" and beyond.
Like this article? We recommend

Like this article? We recommend

On Learning New Languages: Windows, an “Object” Lesson

One of my first jobs for Microsoft in 1986 was supporting Windows 1.0 development over the phone. We were given a month or two of training, which amounted mainly to plowing alone through the much despised Windows 1.0 Development Kit (SDK) documentation.

Then we were pretty much on our own, expected to answer the challenging questions that would come in on resource handles, graphic contexts, and the low-level details of DLL files. It was the most nightmarish experience of my professional life.

Part of the problem is that any Graphical User Interface system (GUI) tends to be notoriously difficult to learn unless you adopt a programmer-friendly layer that hides some of the details. “Raw GUI” tends to be challenging for those who would learn it as well as those who would attempt to teach it.

But much of the problem lay with the documentation distributed with the Windows 1.0 SDK. Although well intentioned and informative in its way, this documentation suffered from a flaw common to many training programs and books. It took a kitchen sink approach by starting with an application that demonstrated a little bit of everything you could possibly do with a Windows app. The result was to leave the reader with eyes glazed over and head spinning.

It’s understandable why so many instructors and authors take the kitchen sink approach. The author is proud of his or her knowledge and wants to make sure you know that they know all the information, and they want to display their expertise from the beginning. So they write “introductory” applications with an eye to showing off what great programmers they are. 

But people don’t learn a language that way. Imagine you have never spoken a word of Japanese, and you go to your first class in the new language. How hopeless would you feel if the teacher started with a sophisticated essay written in the foreign language? Or how would you feel if the first sentences you were taught were at the PhD level?

Human beings do not learn that way. In the case of a natural (or rather, human) language, your first utterances are going to be the equivalent of “Hello,” “Goodbye,” “Thank you,” and “Please.” Only gradually do you work up to being able to write essays.

K&R & Hello, World

So, to begin learning a language, you should start by making sure you can write and build a simple program that says Hello. Then you can move onto progressively more complex programs.

The classic, best known textbook for learning C programming is probably The C Programming Language by Brian Kernighan and Dennis Ritchie. This book is written for a well informed audience comfortable with concepts such as programs, functions, data types, and memory addresses. Some students, unless they already have a programming background, find this book a little rough going at first.

And yet Kernighan and Ritchie (“K&R”) got one thing supremely right. Before you do anything else in a new language, you should verify you can at least print a simple message — that is, say “Hello” to the world. And so they started with one of the most famous of all programs, which in early C looks like this:

#include <stdio.h>

main() {
       printf("Hello, world!\n");
}

In contemporary dialects of C++, this program looks a little different, but is similar:

#include <iostream>

int main() {
     cout << "Hello, world! " << endl;
}

Such a program does nothing beyond printing a simple message, terminated with a newline, but it’s important to make sure you can do this much before trying anything more elaborate.

In the case of BASICA, such a program is trivial indeed, which is why it was the hobbyist’s language of choice in the 1970s and 1980s:

PRINT "HELLO, WORLD!"

To some programmers, these programs might seem too trivial to bother with,  but that’s because they already know the language! Getting just this much to work means many things have to go right. You have to employ the right grammar — either including the necessary commas and semi-colons or (in the case of BASICA) not including them. Then you have to build, link, and run the program using all the correct tools.

In the case of a complex programming system, such as a GUI with no simplifying layers, just displaying “Hello, world!” may itself be a considerable task.

What Do You Do After You Say Hello?

Of course, if all you can do is say “Hello,” you hardly know a language at all. What do you do next? 

Many textbooks (the less successful ones, in my opinion) suggest you sit down and memorize all the keywords and learn all the grammar by staring for hours at syntax diagrams. But I’ve always found that approach to be a waste of time. You don’t learn German, for example, but staring at vocabulary lists. If you’re like 99% of the population, what you really need is a functional approach to learning a language.

After you say “Hello,” the most important tasks to master are basic input and output. Learning how to crunch data is important, too, but such operations are usually learned easily. Except for a few specialized languages such as assembly language and LISP, most modern languages use standard infix notation for arithmetic, with only a few variations. For example, the following works in Basic, C, C++, C#, and Java with almost no adjustments (mainly, you’d need to add a semi-colon at the end with the C family).

Fahrenheit = (Centigrade * 1.8) + 32.0

Before you write this statement, however, you’re usually going to have to declare simple variables. Therefore, your first applications, after “Hello, world,” should focus on the following tasks:

  1. Declare simple variables of the correct type. (Usually floating-point and integer are both supported.)
  2. Get input from the end user.
  3. Crunch the numbers by performing some arithmetic operations.
  4. Display the results.

If you can do just these four things, you are, in my view, already starting to do real programming. Of course, if you can only do these four things, you’re limited to pretty simple applications, such as converting Fahrenheit to Centigrade and vice-versa, which isn’t very exciting.

Decisions, Decisions…

The next step, therefore, is to start learning to use looping and decision-making statements, often referred to collectively as “control-flow structures.” 

With the introduction of a few simple control structures, you can start programming in earnest. I suggest writing simple game programs that interact with the user. You can write these whether you are using a Graphical User Interface or a command-line interface.

For example, you can play a subtraction game in which the total starts at, say, seven, and the human player (that is, the end user) and the computer player take turns subtracting either 1 or 2 from the total. The winner is the player who first makes the total exactly equal to zero.

Such a program is going to look different depending on the language, but the pseudo-code for a correct implementation is shown below. You’ll need to figure out how to perform a Remainder or modulus operation. The heuristic (that is to say, strategy) of the computer player here is to try to always keep the total a multiple of 3. Eventually, then, 3 will be reached. Regardless of whether the human player subtracts 1 or 2, the computer player will then be able to make the total precisely 0, thereby winning the game.

While (True)
     N = remainder from Total divided by 3
     If N > 0 Then
          Subtract N From Total
     Else
          Subtract 1 From Total
     Inform user of the results
     If Total is 0 Then print "I win" and exit
     Prompt user for input: Enter 1 or 2
     While (Input < 1 Or Input > 2)
           Print error message
           Re-prompt user for input
      If Total = 0 Then print "You win" and exit

Another game program I recommend in my books is the “Guessing Game.” The computer randomly selects a number in a specified range and then lets the human player make successive guesses until he or she gets the correct answer. Each time, the computer reports whether the correct answer is higher, lower, or equal to the end user’s guess. Playing this game teaches the user about the logic of binary trees. To write such a program, of course, you’ll need to learn how to generate a random number.

Onward and Upward

Only at this point should you attempt to learn the more advanced techniques in a programming language. This includes the ability to pass data back and forth between multiple subroutines—also called “procedures,” “methods,” or “functions.”

Passing data back and forth between subroutines, in turn, brings up related subjects that—depending on the language—can be either simple or involved. These include:

  • pointers, the use of which is virtually required in C
  • pass by reference
  • the use of reference types, closely related to pass by reference
  • arrays

The last topic, arrays, leads us into the creation of complex data types. That, in turn, leads us to the C-word (classes) and the O-word (objects).

In the past, the topics of objects and classes were usually introduced as a very advanced topic; now the trend is to try to introduce these subjects from the very beginning of a textbook or course. 

For some languages, notably Smalltalk and its variations, it’s necessary to understand object orientation from the very outset, because everything in the language works as some kind of object. In the case of C# and Java, it’s required that you use the “class” keyword to create anything at all.

But do you really need to understand classes to write a program that prints “Hello, world”? No. In the beginning, the class declaration is part of the boilerplate, so to speak, that you have to use (like the “main” keyword in C) in even the simplest program. I recommend that you investigate classes and objects more seriously than that only when you start writing an application that makes more extensive, practical use of them.

In the case of C#, you need to understand objects and references just to create any kind of array. Therefore, if you really want to understand classes, objects, and references in C#, write some applications that employ arrays—particularly control arrays.

Progressing to More Serious Applications

Despite what I said earlier, you can’t really feel that you know a language until you finally tackle a serious application—one that you’re very interested in or might even use for your own daily benefit.

One choice of serious app that I’d strongly recommend is John Horton Conway’s Game of Life. Although this is not exactly a practical application, it is intrinsically fascinating. It’s a computer simulation of living cells. It features a two-dimensional grid that every second or so (or whatever time interval you like) changes to display a new generation of cells. Some cells will die, others will live, and new ones will be born. To transition from one generation to another, each location on the grid obeys the following rules, in which neighbors include all cells (that is, populated grid locations) immediately up, down, right, left, or connected diagonally.

  1. If a cell has fewer than two neighbors, it dies from starvation.
  2. If a grid location has exactly two cells as neighbors, it maintains the status quo: if it is a populated grid location (that is, there is a cell there already) it remains populated; if it is an empty grid location, it remains remain empty.
  3. If a grid location has exactly three cells as neighbors, there is a “birth” event. If the location is empty, it becomes populated. If the grid location is already populated, it remains populated.
  4. If a cell has more than three neighbors that are populated, it dies from starvation.

The rules are simple enough, but implementing them involves significant work. You need to employ some mastery of decision making, loops, input, output (because you need a way to display each generation), and two-dimensional arrays. If you want to control the timing of the generations, you’ll also need some way to access the system clock.

The Game of Life provides another opportunity. If you want to save the state of generations, you can use this application to cut your teeth on disk-file operations—which usually have a different protocol, or set of functions, in each language. Mastering this last ability is important, because most useful applications involve the ability to load and save persistent information at some point.

In the final analysis, the way you learn a programming language is not so different from the way you learn a natural (or “human”) language. Very few people can learn a language by staring at and trying to memorize long lists of definitions or syntax diagrams. New language learning programs, such as Rosetta Stone, are built on this understanding: you learn a language by using it and interacting with the tutorial. In the beginning, that’s going to mean learning to say Hello.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020