Intro to C Programming Flashcards
1
Q
What do you call a line space without code?
A
Whitespace
2
Q
what part of a code is this?
#include <studio.h>
A
Preprocessor or preprocessing command
3
Q
what part of a code is this?
int main (void)
A
Main function
4
Q
symbols used to open and close a function
A
{ curly brackets/braces }
5
Q
In coding, what is within the opening parenthesis and semicolon
A
Argument
6
Q
These are the locations in memory where values can be stored for use by a program (containers)
A
Variables
7
Q
These are series of characters consisting of letters, digits, and underscores
A
Identifiers
8
Q
It is a procedure to solve a problem in terms of actions and order
A
Algorithm