C Programming

Practise Exercise 7: Arrays

JavaScript compatible inter-active version of this test.

1. Declare a character based array called letters of ten elements

2. Assign the character value 'Z' to the fourth element of the letters array

3. Use a for loop to total the contents of an integer array called numbers which has five elements. Store the result in an integer called total.

4. Declare a multidimensioned array of floats called balances having three rows and five columns.

5. Write a for loop to total the contents of the multidimensioned float array balances.

6. Assign the text string "Hello" to the character based array words at declaration time.

7. Assign the text string "Welcome" to the character based array stuff (not at declaration time)

8. Use a printf statement to print out the third element of an integer array called totals

9. Use a printf statement to print out the contents of the character array called words

10. Use a scanf statement to read a string of characters into the array words.

11. Write a for loop which will read five characters (use scanf) and deposit them into the character based array words, beginning at element 0.

Answers


©Copyright B Brown. 1984-1999. All rights reserved.