This is where the majority of your instruction will be contained in.
What is the Main Function?
True or False: A semicolon is needed after EVERY line in your file.
What is False.
True or False: A defined constant replaces all occurrences of the constant name with the desired value throughout the program.
What is False.
Fletcher Loyer's 3 point shooting percentage last night.
What was 16.7%?
Name the 4 structures that make up a C program.
What are Preprocessor Directives, Global Declarations, Main Body, and User-Defined Functions?
The number of spaces needed when indenting your code.
What is 2?
Name 3 data types
What are integer, float, double, character, boolean, long, etc ?
Which of the following is an example of a good identifier?
A) MEDIAN
B) 1st_Downs
C) bradenAssists
D) y
C) bradenAssists
This is the first section in the main function.
What is the local declaration section?
This special formatting is used for user-defined constants.
What is all UPPER CASE?
The range of values that represent true.
What is x≠0?
The symbol(s) used to designate a comment on a single line
The section that will NEVER be used in this course.
What is the Global Declaration section?
A line of code with an example of "hard coding", underlining what is being "hard coded".
*Varies*
What is the difference between declaring and defining a variable?
Declaring - creating the variable, giving it a type and name
Defining - creating memory to store the variable, giving it a value
This library must be included at the beginning of every program.
What is stdio.h?