Outline Introduction Arrays Declaring Arrays Examples Using Arrays Passing Arrays to Functions Sorting Arrays

Similar documents
C Arrays Pearson Education, Inc. All rights reserved.

CHAPTER 3 ARRAYS. Dr. Shady Yehia Elmashad

Array. Arrays. Declaring Arrays. Using Arrays

Chapter 6. Arrays. Copyright 2007 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved.

C++ PROGRAMMING SKILLS Part 4: Arrays

Chapter 4 - Arrays. 4.1 Introduction. Arrays Structures of related data items Static entity (same size throughout program)

Chapter 4 - Arrays. 4.1 Introduction. Arrays Structures of related data items Static entity (same size throughout program) A few types

Arrays. Systems Programming Concepts

C Arrays. Group of consecutive memory locations Same name and type. Array name + position number. Array elements are like normal variables

Arrays. Outline. Multidimensional Arrays Case Study: Computing Mean, Median and Mode Using Arrays Prentice Hall, Inc. All rights reserved.

C: How to Program. Week /Apr/23

BBS 514 YAPISAL PROGRAMLAMA (STRUCTURED PROGRAMMING)

Lecture 04 FUNCTIONS AND ARRAYS

Chapter 5 - Functions

Computer Programming Lecture 14 Arrays (Part 2)

C How to Program, 7/e by Pearson Education, Inc. All Rights Reserved.

CSE101-Lec#17. Arrays. (Arrays and Functions) Created By: Amanpreet Kaur & Sanjeev Kumar SME (CSE) LPU. LPU CSE101 C Programming

Programming for Engineers Arrays

ONE DIMENSIONAL ARRAYS

Multiple-Subscripted Arrays

C: How to Program. Week /Apr/16

Kingdom of Saudi Arabia Princes Nora bint Abdul Rahman University College of Computer Since and Information System CS242 ARRAYS

C Arrays. O b j e c t i v e s In this chapter, you ll:

CSE101-Lec#18. Multidimensional Arrays Application of arrays. Created By: Amanpreet Kaur & Sanjeev Kumar SME (CSE) LPU. LPU CSE101 C Programming

Content. In this chapter, you will learn:

Arrays Introduction. Group of contiguous memory locations. Each memory location has same name Each memory location has same type

Two Dimensional Array - An array with a multiple indexs.

Lecture 2 Arrays, Searching and Sorting (Arrays, multi-dimensional Arrays)

Chapter 7 Array. Array. C++, How to Program

Arrays. Week 4. Assylbek Jumagaliyev

Computer Science & Engineering 150A Problem Solving Using Computers

Introduction to Computer Science Midterm 3 Fall, Points

An array is a collection of data that holds fixed number of values of same type. It is also known as a set. An array is a data type.

Two Dimensional Array - An array with a multiple indexs.

Outline. Computer Memory Structure Addressing Concept Introduction to Pointer Pointer Manipulation Summary

Arrays and Applications

Outline Arrays Examples of array usage Passing arrays to functions 2D arrays Strings Searching arrays Next Time. C Arrays.

Principles of Programming. Chapter 6: Arrays

Objectives of This Chapter

A First Book of ANSI C Fourth Edition. Chapter 8 Arrays

Arrays and Strings. Arash Rafiey. September 12, 2017

How to declare an array in C?

Chapter 6 Arrays and Strings Prentice Hall, Inc. All rights reserved.

UNIVERSITY OF WINDSOR Fall 2007 QUIZ # 2 Solution. Examiner : Ritu Chaturvedi Dated :November 27th, Student Name: Student Number:

Chapter 8 Arrays and Strings. Objectives. Objectives (cont d.) Introduction. Arrays 12/23/2016. In this chapter, you will:

One Dimension Arrays 1

Procedural Programming

FOR Loop. FOR Loop has three parts:initialization,condition,increment. Syntax. for(initialization;condition;increment){ body;

Fundamentals of Programming Session 14

Arrays. CS10001: Programming & Data Structures. Pallab Dasgupta Dept. of Computer Sc. & Engg., Indian Institute of Technology Kharagpur

Arrays. CS10001: Programming & Data Structures. Pallab Dasgupta Dept. of Computer Sc. & Engg., Indian Institute of Technology Kharagpur

Arrays a kind of data structure that can store a fixedsize sequential collection of elements of the same type. An array is used to store a collection

C Programming Review CSC 4320/6320

Chapter 6 - Pointers

Maltepe University Computer Engineering Department. BİL 133 Algorithms and Programming. Chapter 8: Arrays

ITC213: STRUCTURED PROGRAMMING. Bhaskar Shrestha National College of Computer Studies Tribhuvan University

Here, type declares the base type of the array, which is the type of each element in the array size defines how many elements the array will hold

CS11001/CS11002 Programming and Data Structures (PDS) (Theory: 3-1-0) Introduction to arrays

Pointers. Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan

UNIT 2 ARRAYS 2.0 INTRODUCTION. Structure. Page Nos.

Computer Programming. C Array is a collection of data belongings to the same data type. data_type array_name[array_size];

ARRAYS(II Unit Part II)

Chapter 6 SINGLE-DIMENSIONAL ARRAYS

CSE202- Lec#6. (Operations on CSE202 C++ Programming

C Pointers. 7.2 Pointer Variable Definitions and Initialization

Arrays (Deitel chapter 7)

Outline. Introduction. Arrays declarations and initialization. Const variables. Character arrays. Static arrays. Examples.

Initialisation of an array is the process of assigning initial values. Typically declaration and initialisation are combined.

C How to Program, 6/e by Pearson Education, Inc. All Rights Reserved.

Midterm Examination # 2 Wednesday, March 18, Duration of examination: 75 minutes STUDENT NAME: STUDENT ID NUMBER:

AMCAT Automata Coding Sample Questions And Answers

Review of Important Topics in CS1600. Functions Arrays C-strings

Classification s of Data Structures

IS 0020 Program Design and Software Tools

Maltepe University Computer Engineering Department. BİL 133 Algoritma ve Programlama. Chapter 8: Arrays and pointers

Functions. Arash Rafiey. September 26, 2017

Introduction to Programming in C Department of Computer Science and Engineering. Lecture No. #43. Multidimensional Arrays

Computer Programming. Decision Making (2) Loops

KOM3191 Object Oriented Programming Dr Muharrem Mercimek ARRAYS ~ VECTORS. KOM3191 Object-Oriented Computer Programming

Arrays. CSE / ENGR 142 Programming I. Chapter 8. Another Motivation - Averaging Grades. Motivation: Sorting. Data Structures.

Single Dimension Arrays

by Pearson Education, Inc. All Rights Reserved.

Computer Programming: C++

ECE264 Fall 2013 Exam 1, September 24, 2013

Unit 3 Decision making, Looping and Arrays

Objectivities. Experiment 1. Lab6 Array I. Description of the Problem. Problem-Solving Tips

C Pointers. sizeof Returns size of operand in bytes For arrays: size of 1 element * number of elements if sizeof( int ) equals 4 bytes, then

Chapter 3: Arrays and More C Functionality

To declare an array in C, a programmer specifies the type of the elements and the number of elements required by an array as follows

7.1. Chapter 7: Arrays Hold Multiple Values. Array - Memory Layout. A single variable can only hold one value. Declared using [] operator:

Unit 1 - Arrays. 1 What is an array? Explain with Example. What are the advantages of using an array?

V2 3/5/2012. Programming in C. Introduction to Arrays. 111 Ch 07 A 1. Introduction to Arrays

Solutions to Chapter 8

BITG 1113: Array (Part 1) LECTURE 8

STRUCTURED DATA TYPE ARRAYS IN C++ ONE-DIMENSIONAL ARRAY TWO-DIMENSIONAL ARRAY

Questions Bank. 14) State any four advantages of using flow-chart

Arrays. Arrays: Declaration and Instantiation. Array: An Array of Simple Values

Midterm Examination # 2 Wednesday, March 19, Duration of examination: 75 minutes STUDENT NAME: STUDENT ID NUMBER:

C++ Programming. Arrays and Vectors. Chapter 6. Objectives. Chiou. This chapter introduces the important topic of data structures collections

10/20/2015. Midterm Topic Review. Pointer Basics. C Language III. CMSC 313 Sections 01, 02. Adapted from Richard Chang, CMSC 313 Spring 2013

Transcription:

Arrays Outline 1 Introduction 2 Arrays 3 Declaring Arrays 4 Examples Using Arrays 5 Passing Arrays to Functions 6 Sorting Arrays 7 Case Study: Computing Mean, Median and Mode Using Arrays 8 Searching Arrays 9 Multiple-Subscripted Arrays 1

Introduction Array It is an ordered finite collection of data items, each of the same type. Only one name is assigned to an array. Individual elements are accessed by specifying a subscript/index value. The subscript/index value starts with zero rather one and cannot be negative. 2

1D Array One Dimension(1D) Arrays Arrays whose elements are specified by one subscript/index are called 1D arrays. Declaration of 1D Array Syntax: data-type array-name [size]; Eg: int num [10 ]; data-type size array-name 3

ID Array Initialization Initialization of 1D Array: If the array elements are known before, then the array can be initialized as int c[5]={11, 67, 34,56, 21} ; c[0] 11 2000 c[1] 67 2002 c[2] 34 2004 c[3] 56 2006 c[4] 21 2008 4

Arrays Array elements are like normal variables c[ 0 ] = 3; printf( "%d", c[ 0 ] ); Perform operations in subscript. If x equals 3 c[ 5-2 ] == c[ 3 ] == c[ x ] c[++x]=c[4] 5

Declaring Arrays When declaring arrays, specify Name Type of array Number of elements arraytype arrayname[ numberofelements ]; Examples: int marks[ 10 ]; float price[ 3284 ]; Declaring multiple arrays of same type Format similar to regular variables Example: int b[ 100 ], x[ 27 ]; 6

Examples Using Arrays Initializers int n[ 5 ] = { 1, 2, 3, 4, 5 }; If not enough initializers, rightmost elements become 0 int n[ 5 ] = { 0 } ; All elements 0 If too many initializers, a syntax error is produced C arrays have no bounds checking If size omitted, initializers determine it int n[ ] = { 1, 2, 3, 4, 5 }; 5 initializers, therefore 5 element array 7

Example 1 #include<stdio.h> #define SIZE 4 void main() { int num[size]={23,43,1,3}; int i ; //display array elements for(i=0; i<=size-1; i++) { printf( %d \n,num[i]); } } 8

Accepting Array Elements From User #include<stdio.h> void main() { int num[10], i,n; printf( Enter no of elements\n ); scanf( %d, &n); 9

Accepting Array Elements From User //accepting element values for(i=0;i<=n-1;i++) { printf( Enter a number for index %d,i); scanf( %d,&num[i]); } 10

Examples WAP to accept the number of students (n) from the user. Accept the marks scored in Maths subject by each student and store it in the array. Display the highest marks and lowest marks scored in Maths. WAP to accept n numbers in an array from the user. Accept a number to be searched in the array and if found, display the positions at which it is found, and the number of occurrences found otherwise display the message, number not found. 11

WAP to accept n numbers in an array from the user and sort them in the ascending order using a)bubble sort algorithm. b) Selection sort algorithm Bubble sort Example 12

13

Selection Sort Example 14

2D ARRAYS Arrays whose elements are specified by two indices are called 2D arrays They are actually array of arrays 15

2D ARRAYS INITIALIZATION Here, the elements are grouped row wise Number of rows=number of groups Number of columns for a particular row=number of elements in the group corresponding to that row 16

2D ARRAYS Syntax datatype arrayname[][cols]={{e1,e2},{e3,e4}} Eg: int num[2][3]={{2,5,1},{3,4,6}} number of rows=2 number of columns for each row=3 num[0][0]=2 num[0][1]=5 num[0][2]=1 num[1][0]=3 num[1][1]=4 num[1][2]=6 int num[2][3]={2,5,1,3,4,6}; 17

2D Arrays Important Note: While initializing a 2D array, it is necessary to mention the second(column) dimension, whereas the first dimension(row) is optional. int a[2][3]={2,3,1,5,4,6}; int a[][3]={2,3,1,5,4,6}; int a[2][]={2,3,1,5,4,6}; int a[][]={2,3,1,5,4,6}; 18

Accepting matrix from user int mat[5][5]; int m,n,i,j; //accept order printf( Enter number of rows and cols\n ); scanf( %d %d,&m,&n); 19

Accepting matrix from user contd.. //accept matrix elements for(i=0;i<=m-1;i++) { for(j=0;j<=n-1;j++) { printf( Enter a matrix element ); scanf( %d,&mat[i][j]); } } 20

Display Matrix/2D array //display matrix for(i=0;i<=m-1;i++) { for(j=0;j<=n-1;j++) { printf( %d,mat[i][j]); } printf( \n ); } 21

2D Array Programs WAP to accept a matrix from the user and display it and calculate the sum of the following: a) All the matrix elements b) diagonal elements of the matrix c) Upper triangular elements of the matrix d) Lower triangular elements of the matrix 22

2D Arrays Programs WAP to accept two matrices from the user and carry out matrix addition and display the resultant matrix. WAP to accept two matrices from the user and carry out matrix multiplication and display the resultant matrix. 23

Passing Arrays to Functions Passing arrays To pass an array argument to a function, specify the name of the array without any brackets int myarray[ 24 ]; myfunction( myarray, 24 ); Array size usually passed to function Arrays passed call-by-reference Name of array is address of first element Function knows where the array is stored Modifies original memory locations Passing array elements Passed by call-by-value Pass subscripted name (i.e., myarray[ 3 ]) to function 24

Passing Arrays to Functions Function prototype void modifyarray( int b[], int arraysize ); Parameter names optional in prototype int b[] could be written int [] int arraysize could be simply int 25

2 Passing arrays and individual array elements to functions */ 3 #include <stdio.h> 4 #define SIZE 5 5 6 void modifyarray( int [], int ); /* appears strange */ 7 void modifyelement( int ); 8 9 int main() 10 { 11 int a[ SIZE ] = { 0, 1, 2, 3, 4 }, i; 12 13 printf( "Effects of passing entire array call " 14 "by reference:\n\nthe values of the " 15 "original array are:\n" ); 16 17 for ( i = 0; i <= SIZE - 1; i++ ) 18 printf( "%3d", a[ i ] ); 19 20 printf( "\n" ); 21 modifyarray( a, SIZE ); /* passed call by reference */ 22 printf( "The values of the modified array are:\n" ); 23 24 for ( i = 0; i <= SIZE - 1; i++ ) 25 printf( "%3d", a[ i ] ); 26 27 printf( "\n\n\neffects of passing array element call " 28 "by value:\n\nthe value of a[3] is %d\n", a[ 3 ] ); 29 modifyelement( a[ 3 ] ); 30 printf( "The value of a[ 3 ] is %d\n", a[ 3 ] ); 31 return 0; 32 } 1. Function definitions 2. Pass array to a function 3. Print Entire arrays passed call-byreference, and can be modified 2.1 Pass array element to a function Array elements passed call-byvalue, and cannot be modified 2000 Prentice 26 Hall, Inc. All rights reserved.

33 34 void modifyarray( int b[], int size ) 35 { 36 int j; 37 38 for ( j = 0; j <= size - 1; j++ ) 39 b[ j ] *= 2; 40 } 41 42 void modifyelement( int e ) 43 { 44 printf( "Value in modifyelement is %d\n", e *= 2 ); 45 } 3.1 Function definitions Effects of passing entire array call by reference: The values of the original array are: 0 1 2 3 4 The values of the modified array are: 0 2 4 6 8 Program Output Effects of passing array element call by value: The value of a[3] is 6 Value in modifyelement is 12 The value of a[3] is 6 2000 Prentice 27 Hall, Inc. All rights reserved.

Case Study: Computing Mean, Median and Mode Using Arrays Mean average Median number in middle of sorted list 1, 2, 3, 4, 5 3 is the median Mode number that occurs most often 1, 1, 1, 2, 3, 3, 4, 5 1 is the mode 28

1 /* Fig. 6.16: fig06_16.c 2 This program introduces the topic of survey data analysis. 3 It computes the mean, median, and mode of the data */ 4 #include <stdio.h> 5 #define SIZE 99 6 7 void mean( const int [] ); 8 void median( int [] ); 9 void mode( int [], const int [] ) ; 10 void bubblesort( int [] ); 11 void printarray( const int [] ); 12 13 int main() 14 { 15 int frequency[ 10 ] = { 0 }; 16 int response[ SIZE ] = 17 { 6, 7, 8, 9, 8, 7, 8, 9, 8, 9, 18 7, 8, 9, 5, 9, 8, 7, 8, 7, 8, 19 6, 7, 8, 9, 3, 9, 8, 7, 8, 7, 20 7, 8, 9, 8, 9, 8, 9, 7, 8, 9, 21 6, 7, 8, 7, 8, 7, 9, 8, 9, 2, 22 7, 8, 9, 8, 9, 8, 9, 7, 5, 3, 23 5, 6, 7, 2, 5, 3, 9, 4, 6, 4, 24 7, 8, 9, 6, 8, 7, 8, 9, 7, 8, 25 7, 4, 4, 2, 5, 3, 8, 7, 5, 6, 26 4, 5, 6, 1, 6, 5, 7, 8, 7 }; 27 28 mean( response ); 29 median( response ); 30 mode( frequency, response ); 31 return 0; 32 } 1. Function prototypes 1.1 Initialize array 2. Call functions mean, median, and mode 2000 Prentice 29 Hall, Inc. All rights reserved.

33 34 void mean( const int answer[] ) 35 { 36 int j, total = 0; 37 38 printf( "%s\n%s\n%s\n", "********", " Mean", "********" ); 39 40 for ( j = 0; j <= SIZE - 1; j++ ) 41 total += answer[ j ]; 42 43 printf( "The mean is the average value of the data\n" 44 "items. The mean is equal to the total of\n" 45 "all the data items divided by the number\n" 46 "of data items ( %d ). The mean value for\n" 47 "this run is: %d / %d = %.4f\n\n", 48 SIZE, total, SIZE, ( double ) total / SIZE ); 49 } 50 51 void median( int answer[] ) 52 { 53 printf( "\n%s\n%s\n%s\n%s", 54 "********", " Median", "********", 55 "The unsorted array of responses is" ); 56 57 printarray( answer ); 58 bubblesort( answer ); 59 printf( "\n\nthe sorted array is" ); 60 printarray( answer ); 61 printf( "\n\nthe median is element %d of\n" 62 "the sorted %d element array.\n" 63 "For this run the median is %d\n\n", 64 SIZE / 2, SIZE, answer[ SIZE / 2 ] ); 3. Define function mean 3.1 Define function median 3.1.1 Sort Array 3.1.2 Print middle element 2000 Prentice 30 Hall, Inc. All rights reserved.

65 } 66 67 void mode( int freq[], const int answer[] ) 68 { 69 int rating, j, h, largest = 0, modevalue = 0; 70 71 printf( "\n%s\n%s\n%s\n", 72 "********", " Mode", "********" ); 73 74 for ( rating = 1; rating <= 9; rating++ ) 75 freq[ rating ] = 0; 76 77 for ( j = 0; j <= SIZE - 1; j++ ) 78 ++freq[ answer[ j ] ]; 79 80 printf( "%s%11s%19s\n\n%54s\n%54s\n\n", 81 "Response", "Frequency", "Histogram", 82 "1 1 2 2", "5 0 5 0 5" ); 83 84 for ( rating = 1; rating <= 9; rating++ ) { 85 printf( "%8d%11d ", rating, freq[ rating ] ); 86 87 if ( freq[ rating ] > largest ) { 88 largest = freq[ rating ]; 89 modevalue = rating; 90 } 91 92 for ( h = 1; h <= freq[ rating ]; h++ ) 93 printf( "*" ); 94 Notice how the subscript in frequency[] is the value of an element in response[] (answer[]) 3.2 Define function mode 3.2.1 Increase frequency[] depending on response[] Print stars depending on value of frequency[] 2000 Prentice 31 Hall, Inc. All rights reserved.

95 printf( "\n" ); 96 } 97 98 printf( "The mode is the most frequent value.\n" 99 "For this run the mode is %d which occurred" 100 " %d times.\n", modevalue, largest ); 101 } 102 103 void bubblesort( int a[] ) 104 { 105 int pass, j, hold; 106 107 for ( pass = 1; pass <= SIZE - 1; pass++ ) 108 109 for ( j = 0; j <= SIZE - 2; j++ ) 110 111 if ( a[ j ] > a[ j + 1 ] ) { 112 hold = a[ j ]; 113 a[ j ] = a[ j + 1 ]; 114 a[ j + 1 ] = hold; 115 } 116 } 117 118 void printarray( const int a[] ) 119 { 120 int j; 121 122 for ( j = 0; j <= SIZE - 1; j++ ) { 123 124 if ( j % 20 == 0 ) 125 printf( "\n" ); Bubble sort: if elements out of order, swap them. 3.3 Define bubblesort 3.3 Define printarray 2000 Prentice 32 Hall, Inc. All rights reserved.

126 127 printf( "%2d", a[ j ] ); 128 } 129 } ******** Mean ******** The mean is the average value of the data items. The mean is equal to the total of all the data items divided by the number of data items (99). The mean value for this run is: 681 / 99 = 6.8788 Program Output ******** Median ******** The unsorted array of responses is 7 8 9 8 7 8 9 8 9 7 8 9 5 9 8 7 8 7 8 6 7 8 9 3 9 8 7 8 7 7 8 9 8 9 8 9 7 8 9 6 7 8 7 8 7 9 8 9 2 7 8 9 8 9 8 9 7 5 3 5 6 7 2 5 3 9 4 6 4 7 8 9 6 8 7 8 9 7 8 7 4 4 2 5 3 8 7 5 6 4 5 6 1 6 5 7 8 7 The sorted array is 1 2 2 2 3 3 3 3 4 4 4 4 4 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 The median is element 49 of the sorted 99 element array. For this run the median is 7 2000 Prentice 33 Hall, Inc. All rights reserved.

******** Mode ******** Response Frequency Histogram 1 1 2 2 5 0 5 0 5 Program Output 1 1 * 2 3 *** 3 4 **** 4 5 ***** 5 8 ******** 6 9 ********* 7 23 *********************** 8 27 *************************** 9 19 ******************* The mode is the most frequent value. For this run the mode is 8 which occurred 27 times. 2000 Prentice 34 Hall, Inc. All rights reserved.

Multiple-Subscripted Arrays Multiple subscripted arrays Tables with rows and columns (m by n array) Like matrices: specify row, then column Row 0 Row 1 Row 2 Column 0 Column 1 Column 2 Column 3 a[ 0 ][ 0 ] a[ 1 ][ 0 ] a[ 2 ][ 0 ] a[ 0 ][ 1 ] a[ 1 ][ 1 ] a[ 2 ][ 1 ] a[ 0 ][ 2 ] a[ 1 ][ 2 ] a[ 2 ][ 2 ] a[ 0 ][ 3 ] a[ 1 ][ 3 ] a[ 2 ][ 3 ] Array name Row subscript Column subscript 35

Multiple-Subscripted Arrays Initialization int b[ 2 ][ 2 ] = { { 1, 2 }, { 3, 4 } }; Initializers grouped by row in braces 3 4 If not enough, unspecified elements set to zero int b[ 2 ][ 2 ] = { { 1 }, { 3, 4 } }; Referencing elements Specify row, then column printf( "%d", b[ 0 ][ 1 ] ); 1 2 3 4 1 0 36

2 Double-subscripted array example */ 3 #include <stdio.h> 4 #define STUDENTS 3 5 #define EXAMS 4 6 7 int minimum( const int [][ EXAMS ], int, int ); 8 int maximum( const int [][ EXAMS ], int, int ); 9 double average( const int [], int ); 10 void printarray( const int [][ EXAMS ], int, int ); 11 12 int main() 13 { exam. 14 int student; 15 const int studentgrades[ STUDENTS ][ EXAMS ] = 16 { { 77, 68, 86, 73 }, 17 { 96, 87, 89, 78 }, 18 { 70, 90, 86, 81 } }; 19 20 printf( "The array is:\n" ); 21 printarray( studentgrades, STUDENTS, EXAMS ); 22 printf( "\n\nlowest grade: %d\nhighest grade: %d\n", 23 minimum( studentgrades, STUDENTS, EXAMS ), 24 maximum( studentgrades, STUDENTS, EXAMS ) ); 25 26 for ( student = 0; student <= STUDENTS - 1; student++ ) 27 printf( "The average grade for student %d is %.2f\n", 28 student, 29 average( studentgrades[ student ], EXAMS ) ); 30 31 return 0; 32 } Each row is a particular student, each column is the grades on the 1. Initialize variables 1.1 Define functions to take double scripted arrays 1.2 Initialize studentgrades[][] 2. Call functions minimum, maximum, and average 2000 Prentice 37 Hall, Inc. All rights reserved.

33 34 /* Find the minimum grade */ 35 int minimum( const int grades[][ EXAMS ], 36 int pupils, int tests ) 37 { 38 int i, j, lowgrade = 100; 39 40 for ( i = 0; i <= pupils - 1; i++ ) 41 for ( j = 0; j <= tests - 1; j++ ) 42 if ( grades[ i ][ j ] < lowgrade ) 43 lowgrade = grades[ i ][ j ]; 44 45 return lowgrade; 46 } 47 48 /* Find the maximum grade */ 49 int maximum( const int grades[][ EXAMS ], 50 int pupils, int tests ) 51 { 52 int i, j, highgrade = 0; 53 54 for ( i = 0; i <= pupils - 1; i++ ) 55 for ( j = 0; j <= tests - 1; j++ ) 56 if ( grades[ i ][ j ] > highgrade ) 57 highgrade = grades[ i ][ j ]; 58 59 return highgrade; 60 } 61 62 /* Determine the average grade for a particular exam */ 63 double average( const int setofgrades[], int tests ) 64 { 3. Define functions 2000 Prentice 38 Hall, Inc. All rights reserved.

65 int i, total = 0; 66 67 for ( i = 0; i <= tests - 1; i++ ) 68 total += setofgrades[ i ]; 69 70 return ( double ) total / tests; 71 } 72 73 /* Print the array */ 74 void printarray( const int grades[][ EXAMS ], 75 int pupils, int tests ) 76 { 77 int i, j; 78 79 printf( " [0] [1] [2] [3]" ); 80 81 for ( i = 0; i <= pupils - 1; i++ ) { 82 printf( "\nstudentgrades[%d] ", i ); 83 84 for ( j = 0; j <= tests - 1; j++ ) 85 printf( "%-5d", grades[ i ][ j ] ); 86 } 87 } 3. Define functions 2000 Prentice 39 Hall, Inc. All rights reserved.

The array is: [0] [1] [2] [3] studentgrades[0] 77 68 86 73 studentgrades[1] 96 87 89 78 studentgrades[2] 70 90 86 81 Program Output Lowest grade: 68 Highest grade: 96 The average grade for student 0 is 76.00 The average grade for student 1 is 87.50 The average grade for student 2 is 81.75 2000 Prentice 40 Hall, Inc. All rights reserved.

Examples Using Arrays Character arrays String first is really a static array of characters Character arrays can be initialized using string literals char string1[] = "first"; Null character '\0' terminates strings string1 actually has 6 elements It is equivalent to char string1[] = { 'f', 'i', 'r', 's', 't', '\0' }; Can access individual characters string1[ 3 ] is character s Array name is address of array, so & not needed for scanf scanf( "%s", string2 ); Reads characters until whitespace encountered Can write beyond end of array, be careful 41