fundamentals of programming c session 12
play

Fundamentals of Programming C - PowerPoint PPT Presentation

Fundamentals of Programming C Session # 12 By: Saeed Haratian Fall 2015 Outlines Function Call Stack Headers Calling Functions By Value and By Reference Random


  1. بميـــحرلا نحنحنرلا للوللوا مــس Fundamentals of Programming C Session # 12 By: Saeed Haratian Fall 2015

  2. Outlines  Function Call Stack  Headers  Calling Functions By Value and By Reference  Random Number Generation  Example: A Game of Chance

  3. Function Call Stack  To understand how C performs function calls, we first need to consider a data structure (i.e., collection of related data items) known as a stack.  Students can think of a stack as analogous to a pile of dishes.  When a dish is placed on the pile, it’s no rmally placed at the top (referred to as pushing the dish onto the stack).  Similarly, when a dish is removed from the pile, it’s always removed from the top (referred to as popping the dish off the stack).  Stacks are known as last-in, first-out (LIFO) data structures — the last item pushed (inserted) on the stack is the first item popped (removed) from the stack.

  4. Function Call Stack …  When a program calls a function, the called function must know how to return to its caller, so the return address of the calling function is pushed onto the program execution stack (sometimes referred to as the function call stack).  If a series of function calls occurs, the successive return addresses are pushed onto the stack in last-in, first-out order so that each function can return to its caller.  The program execution stack also contains the memory for the local variables used in each invocation of a function during a program’s execution.  This data, stored as a portion of the program execution stack, is known as the activation record or stack frame of the function call.

  5. Function Call Stack …  When a function call is made, the activation record for that function call is pushed onto the program execution stack.  When the function returns to its caller, the activation record for this function call is popped off the stack and those local variables are no longer known to the program.  Of course, the amount of memory in a computer is finite, so only a certain amount of memory can be used to store activation records on the program execution stack.  If more function calls occur than can have their activation records stored on the program execution stack, an error known as a stack overflow occurs.

  6. Headers  Each standard library has a corresponding header containing the function prototypes for all the functions in that library and definitions of various data types and constants needed by them.  You can create custom headers.  Programmer-defined headers should also use the .h extension.  A programmer-defined header can be included by using the #include preprocessor directive.  For example, if the prototype for our square function was located in the header square.h , we’d include that header in our program by using the following directive at the top of the program: #include #include "square.h" "square.h"

  7. Calling Functions By Value and By Reference  There are two ways to invoke functions in many programming languages — call-by-value and call-by-reference.  When arguments are passed by value, a copy of the argument’s value is made and passed to the called function.  Changes to the copy do not affect an original variable’s value in the caller.  When an argument is passed by reference, the caller allows the cal led function to modify the original variable’s value.  Call-by-value should be used whenever the called function does not need to modify the value of the caller’s original variable.

  8. Calling Functions By Value and By Reference …  This prevents the accidental side effects (variable modifications) that so greatly hinder the development of correct and reliable software systems.  Call-by-reference should be used only with trusted called functions that need to modify the original variable.  In C, all calls are by value.  In Chapter 6, we’ll see that arrays are automatically passed by reference.

  9. Random Number Generation  We now take a brief and, hopefully, entertaining diversion into a popular programming application, namely simulation and game playing.  The element of chance can be introduced into computer applications by using the C Standard Library function rand from the <stdlib.h> header.  Consider the following statement: i = rand();  The rand function generates an integer between 0 and RAND_MAX (a symbolic constant defined in the <stdlib.h> header).  Standard C states that the value of RAND_MAX must be at least 32767, which is the maximum value for a two-byte (i.e., 16-bit) integer.

  10. Random Number Generation …  The programs in this section were tested on a C system with a maximum value of 32767 for RAND_MAX .  If rand truly produces integers at random, every number between 0 and RAND_MAX has an equal chance (or probability) of being chosen each time rand is called.  The range of values produced directly by rand is often different from what is needed in a specific application.  To demonstrate rand , let’s develop a program to simulate 20 rolls of a six-sided die and print the value of each roll.  The function prototype for function rand is in <stdlib.h> .

  11. Random Number Generation …  We use the remainder operator ( % ) in conjunction with rand as follows rand() % 6 to produce integers in the range 0 to 5.  This is called scaling.  The number 6 is called the scaling factor.  We then shift the range of numbers produced by adding 1 to our previous result.  The output of Fig. 5.7 confirms that the results are in the range 1 to 6 — the output might vary by compiler.

  12. Random Number Generation …  To show that these numbers occur approximately with equal likelihood, let’s simulate 6000 rolls of a die with the program of Fig. 5.8.  Each integer from 1 to 6 should appear approximately 1000 times.  As the program output shows, by scaling and shifting we’ve used the rand function to realistically simulate the rolling of a six-sided die.  No default case is provided in the switch statement.  Also note the use of the %s conversion specifier to print the character strings " Face " and " Frequency " as column headers.  After we study arrays in Chapter 6, we’ll show how to replace this entire switch statement elegantly with a single-line statement.

  13. Random Number Generation …  Executing the program of Fig. 5.7 again produces exactly the same sequence of values.  How can these be random numbers? Ironically, this repeatability is an important characteristic of function rand .  When debugging a program, this repeatability is essential for proving that corrections to a program work properly.  Function rand actually generates pseudorandom numbers.  Calling rand repeatedly produces a sequence of numbers that appears to be random.  However, the sequence repeats itself each time the program is executed.

  14. Random Number Generation …  Once a program has been thoroughly debugged, it can be conditioned to produce a different sequence of random numbers for each execution.  This is called randomizing and is accomplished with the standard library function srand .  Function srand takes an unsigned integer argument and seeds function rand to produce a different sequence of random numbers for each execution of the program.  We demonstrate srand in Fig. 5.9.

  15. Random Number Generation …  Notice that a different sequence of random numbers is obtained each time the program is run, provided that a different seed is supplied.  To randomize without entering a seed each time, use a statement like srand( time( NULL NULL ) ); ) );  This causes the computer to read its clock to obtain the value for the seed automatically.  Function time returns the number of seconds that have passed since midnight on January 1, 1970.  Function time takes NULL as an argument ( time is capable of providing you with a string representing the value it returns; NULL disables this capability for a specific call to time ).  The function prototype for time is in <time.h>.

  16. Example: A Game of Chance  One of the most popular games of chance is a dice game known as “craps.” The rules of the game are simple. A player rolls two dice. Each die has six faces. These faces contain 1, 2, 3, 4, 5, and 6 spots. After the dice have come to rest, the sum of the spots on the two upward faces is calculated. If the sum is 7 or 11 on the first throw, the player wins. If the sum is 2, 3, or 12 on the first throw (called “craps”), the player loses (i.e., the “house” wins). If the sum is 4, 5, 6, 8, 9, or 10 on the first throw, then that sum becomes the player’s “point.” To win, you must continue rolling the dice until you “make your point.” The player loses by rolling a 7 before making the point.  Figure 5.10 simulates the game of craps and Fig. 5.11 shows several sample executions.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend