• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/8

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

8 Cards in this Set

  • Front
  • Back
(52) What are the building blocks of programming?
Functions
(52) What allows programmers to break down complex tasks into smaller manageable parts?
Functions
(52) What is the source code of a function called?
The function definition
(52) What term is used to describe the process of identifying various functions of a program before the main function and defining those functions following the main function’s block of code?
Function prototyping
(52) What does the “int” represent in the following: int rollSixSidedDie()?
The data type to be returned at the conclusion of the function displayed
(53) What identifies the block of code that belongs to a particular function?
Curly braces ({ })
(53) Where are the declarations of library functions found?
In header files (example: stdio.h)
(53) What three things are typically contained in a C program?
1. One or more header files<br/>2. A source file containing the main () function<br/>3. One ore more additional source files containing function definitions