So far we have only discussed functions preceded by the key word
void
, which means the function does not return a value to the calling
program. In WCM, this is the most common case, however in general there
are many functions which return a value to the calling program.
You might have noticed by
now that some of the functions we are using, like the math functions,
yield results. Other functions, like ShowTextTwice, perform an action
but don’t return a value. That raises some questions:
What happens if you call a
function and you don’t do anything with the result (i.e. you don’t
assign it to a variable or use it as part of a larger expression)?
What happens if you use a
function without a result as part of an expression, like ShowTextTwice
() + 7?
Can we write functions
that yield results, or are we stuck with things like ShowTextTwice?
The answer to the third
question is “yes, you can write functions that return values,” and
we’ll do it in a couple of chapters. I will leave it up to you to
answer the other two questions by trying them out. Any time you have a
question about what is legal or illegal in C++, a good way to find out
is to ask the compiler.
Note: Though beyond the scope of this book, the first question can be
important in general C++ programming. All C++ programs must have a main
program which usually has the form:
void main ()
{
…
}
However in some cases, the
main program may receive or supply information to the computer’s
operating system (OS). Thus, if this feature is to be used, the
programmer must not only understand C++ but have a basic understanding
of the OS as well. Fortunately for the novice, this is a relatively
rare occurrence but you should be aware the possibility exists.
Alan Sturgess shared an excellent video he made using Tales Animator! You can still download Tales Animator here. Unfortunately it is only available for Wi
There is a prototype of simple online character designer available
HERE. It is only a prototype,
it does not contain many pieces yet but it can already generat
Web Cartoon Maker 1.5 is finally here! You can download it
HERE!
Here is what was updated in version 1.5:
Web Cartoon Maker Desktop Edition is now fully standal